error C2054:在“inline”之后应输入“(”

  • 问题:error C2054:在“inline”之后应输入“(”

  • 解决方案是:在该头文件中加入

  • #if defined(WIN32) && !defined(__cplusplus)
    
    #define inline __inline
    
    #endif

    ===================================================================

  • 问题:Undefined struct 'timespec' when using VS 2013

  • 定义在:C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\time.h

  • 解决方式为自己添加:

  • #ifndef _CRT_NO_TIME_T
    struct timespec
    {
    time_t tv_sec; // Seconds - >= 0
    long tv_nsec; // Nanoseconds - [0, 999999999]
    };
    #endif

     

  •  

你可能感兴趣的:(C++)