c++ Error 3 error C2159: more than one storage class …
https://stackoverflow.com/questions/26200373/c-error3error-c2159-more-than-one-storage-class-specified
Oct 05, 2014 · 2. This answer is not useful. Show activity on this post. The keyword auto had a different meaning prior to C++11. It meant a variable is an automatic variable, its scope is local. In C++11, its meaning changed to mean "deduce the type" of the variable. Since VS 2008 does not support C++11 constructs, it interprets the auto with its old meaning. Reviews: 5
Reviews: 5
DA: 93 PA: 61 MOZ Rank: 1