I simply build a linux c++ hello project.
And set the Makefile properties’ common flas with -std=c++11,
then I found the gcc_Debug.h has the __cplusplus with value 201103L,
However, intellisense still won’t recognize the unordered_map, while the built and run is OK.
So, could anyone help to solve this problem?
#include
#include
using namespace std;
int main(int argc, char ** argv)
{
std::unordered_map umap;
cout<<"Hello World."<
return 0;
}