Fix GCC compile on AIX
In file included from test.cpp:31:0: validate.h:213:93: error: operator '||' has no right operand #elif (_POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _BSD_SOURCE || _SVID_SOURCE || _POSIX_SOURCE)pull/853/head
parent
198b081df5
commit
3afb1f1099
|
|
@ -210,7 +210,7 @@ inline std::string TimeToString(const time_t& t)
|
|||
CRYPTOPP_ASSERT(err == 0);
|
||||
|
||||
std::string str(err == 0 ? timeBuf : "");
|
||||
#elif (_POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _BSD_SOURCE || _SVID_SOURCE || _POSIX_SOURCE)
|
||||
#elif (_POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE >= 1 || _BSD_SOURCE >= 1 || _SVID_SOURCE >= 1 || _POSIX_SOURCE >= 1)
|
||||
tm localTime = {};
|
||||
char timeBuf[64];
|
||||
char* timeString = ::asctime_r(::localtime_r(&t, &localTime), timeBuf);
|
||||
|
|
|
|||
Loading…
Reference in New Issue