1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

comment the hpux bit

llvm-svn: 22081
This commit is contained in:
Duraid Madina 2005-05-16 06:59:53 +00:00
parent 2a8340a738
commit 0cc90e2e4a

View File

@ -26,6 +26,7 @@ std::string TimeValue::toString() const {
time_t ourTime = time_t(this->toEpochTime());
#ifdef __hpux
// note that the following line needs -D_REENTRANT on HP-UX to be picked up
asctime_r(localtime(&ourTime), buffer);
#else
::asctime_r(::localtime(&ourTime), buffer);