http://llvm.org/bugs/show_bug.cgi?id=8048
Douglas Gregor <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Douglas Gregor <[email protected]> 2010-11-02 11:54:23 CDT --- We've decided to have Clang follow the C++0x semantics here, allowing local types as template arguments. Recently, we added appropriate warnings here: t.cpp:2:24: warning: template argument uses local type '<anonymous enum at t.cpp:2:12>' [-Wlocal-type-template-args] void g() { enum { E }; f(E); } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
