Is there any change in the usage of local class in C++11?
It seems in C++03 local classes cannot be used as template argument (I recall that).
Consider this code,
template<typename T> void f(const T&) {}
//Note : S is a local class defined inside main()
int main() { struct S{}; f(S()); } //I want template argument to be deduced.
But it gives compilation error (C++03 mode), saying (ideone):
prog.cpp:4: error: no matching function for call to ‘f(main()::S)’
However, it compiles fine when compiling it in C++11 mode (ideone), which makes sense to me, otherwise lambda wouldn't work. So I guess that there is at least this change in the usage of local classes. Am I right? What are other changes concerning local classes?
Please quote the relevant text from the Standards (C++03 and C++11 both) so readers can compare themselves, and for future reference.
The differences are visible by comparing §14.3.1/2 in both standards.
C++03
C++0x (n3290)
C++03 explicitly disallows local classes in template type arguments. C++11 doesn't, and even includes an example of a valid use of such.