MACRO
OMNI_DEF2STR - String-izes the value passed in
DESCRIPTION top
Example:
OMNI_DEF2STR expands the value passed into a string value.Example:
#define MY_DEF(val) std::string(OMNI_DEF2STR(val)) std::string h = MY_DEF(hello world); std::cout << h << std::endl; // output will be 'hello world' on the standard output