What do __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS mean?

后端 未结 4 1282
太阳男子
太阳男子 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 20:00

    The macros are not part of the C++ standard and are probably used for internal purposes in your C++ implementation. If you want to know more about them, you should ask a question with atag that indicates what that implementation is.

提交回复
热议问题