ivas

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: C++11 Intellisense in Visual Studio 2015 #7141
    ivas
    Participant

    I’ve resolved this problem by adding “#undef __cplusplus” before “#define __cplusplus 201103L” in gcc_Debug.h and gcc_Release.h:

    #if defined(_MSC_VER) && (_MSC_VER < 1800 || defined(__cplusplus))
    #undef __cplusplus
    #define __cplusplus 201103L
    #endif

    But every time when project’s settings is changed, VisualGDB restores these files.

Viewing 1 post (of 1 total)