Using Eclipse Mars, I get a Symbol 'unique_ptr' could not be resolved error Symbol 'unique_ptr' could not be resolved . I tried adding -std=c++11 to the settings of the GCC CDT built-in compiler, but that didn't help. The error disappears when I open Eclipse again, but if I make changes to the code, the error is returned.
One simple code example:
std::unique_ptr<String> p1;
c ++ eclipse c ++ 11
Robbie tacescu
source share