XIEITE_LANG_TYPE_ /*???*/
, XIEITE_LANG_MAJOR_ /*???*/
, XIEITE_LANG_MINOR_ /*???*/
, XIEITE_LANG_PATCH_ /*???*/
, XIEITE_LANG_EQ ()
, XIEITE_LANG_LEAST ()
, XIEITE_LANG_MOST ()
Defined in header <xieite/pp/lang.hpp>
Macros for identifying the current language and its version (major, minor, patch). The macros are not mutually exclusive.
Definitions
#typeUse with#define XIEITE_LANG_TYPE_ /*???*/ /* boolean integer literal */ #define XIEITE_LANG_MAJOR_ /*???*/ /* integer literal */ #define XIEITE_LANG_MINOR_ /*???*/ /* integer literal */ #define XIEITE_LANG_PATCH_ /*???*/ /* integer literal */
C
, CPP
, CPP_CLI
, CPP_CX
, CPP_EMBEDDED
, CPP_WINRT
, CUDA
, GLSL
, HLSL
, METAL
, OBJECTIVE_C
, or PSSL
. See example.#eq
Allows two optional arguments for the minor and patch version numbers. Expands to an expression checking whether a language is in use and its version is equal to some value.#define XIEITE_LANG_EQ (type ,major ,... /* minor, patch */ )/* boolean expression */
#least
Expands to an expression checking whether a language is in use and its version is equal to or greater than some value.#define XIEITE_LANG_LEAST (type ,major ,... /* minor, patch */ )/* boolean expression */
#most
Expands to an expression checking whether a language is in use and its version is equal to or less than some value.#define XIEITE_LANG_MOST (type ,major ,... /* minor, patch */ )/* boolean expression */
Example
Possible output:int main () {std ::"Is current language C++? ,{}\n "XIEITE_LANG_TYPE_CPP ); }
[View in Compiler Explorer]Is current language C++? 1