2012-10-01から1ヶ月間の記事一覧

Recursive Function Template Instantiation and New Function Declarator Syntax

C++

以下のコードは ill-formed である.その理由を述べなさい. void f() {} template<typename T, typename... Types> auto f(T &&, Types &&... args) -> decltype(f(args...)) { return f(args...); } int main() { f(0, 1); }</typename>