Based on the error message, you're attempting to use clang++ in C++11 mode with the GNU gcc 4.2.1's library. That library is from 2007.
Last edited on
Thank you, removing that gave me an error:
expected ';' at the of declaration |
vector<unsigned> vu{1,2,3};
..................................^
Last edited on