What do __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS mean?

后端 未结 4 1284
太阳男子
太阳男子 2020-12-08 19:01

I see this in the standard C++ libraries for my system, as well as some of the headers in a library I\'m using.

What are the semantics of these two definitions? Is

4条回答
  •  借酒劲吻你
    2020-12-08 19:49

    In stdint.h under C++, they control whether to define macros like INT32_MAX or INT32_C(v). See your platform's stdint.h for additional information.

提交回复
热议问题