intellisense not recognize unordered_map

Sysprogs forums Forums VisualGDB intellisense not recognize unordered_map

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #922
    liketemple
    Participant

    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;
    }

    #3445
    support
    Keymaster

    Hi,

    Do you get any IntelliSense errors in the Errors pane? IntelliSense currently uses a completely different mechanism than the compiler uses, so it is known miss some GCC-specific declarations occasionally. We are currently working on a separate IntelliSense engine that will understand GCC-specific code much better.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.