R
REH
This is probably a dumb question, but...
I have a code file in which I cannot use a using directive to pull in
std (because it conflicts with a library I have to pull in). So, how
to I handle names that can be macros, but may not be (such as errno)?
Is there a simpler way than (for example):
#ifdef errno
errno = 0;
#else
std::errno = 0;
#endif
REH
I have a code file in which I cannot use a using directive to pull in
std (because it conflicts with a library I have to pull in). So, how
to I handle names that can be macros, but may not be (such as errno)?
Is there a simpler way than (for example):
#ifdef errno
errno = 0;
#else
std::errno = 0;
#endif
REH