One way to cause diagnostic 2710 to be emitted is to attempt to define std::initializer_list like so ... % type file.cpp // file.cpp namespace std { template class initializer_list {}; } % armcl --display_error_number file.cpp "file.cpp", line 5: error #2710: invalid template parameter list for std::initializer_list (it should be one ordinary type parameter with no default) 1 error detected in the compilation of "file.cpp". >> Compilation failure But that's probably not what you are doing. For the source file you build when this diagnostic is emitted, please follow the directions in the article How to Submit a Compiler Test Case . Thanks and regards, -George
↧