IntelliSense: identifier"_nothrow_"is undefined

Sysprogs forums Forums VisualGDB IntelliSense: identifier"_nothrow_"is undefined

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #907
    Anonymous
    Participant

    On a new installation attempting to build the first Tut I get this error over and over.
    1 IntelliSense: identifier “__nothrow__” is undefined c:MinGWincludewctype.h 67 21 WindowsProject55

    I have re-installed MinGW twice with the same error
    Any help?

    #3379
    support
    Keymaster

    Hi,

    We are currently working on a new IntelliSense engine that will solve the type of problems you are experiencing. As a workaround, you can update the definition of __MINGW_NOTHROW in _mingw.h:

    
    #ifdef _MSC_VER
    #define __MINGW_NOTHROW
    #else
    
    //Original definition
    #if  __MINGW_GNUC_PREREQ (3, 3)
    #define __MINGW_NOTHROW __attribute__ ((__nothrow__))
    #else
    #define __MINGW_NOTHROW
    #endif /* GNUC >= 3.3 */

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