comment the hpux bit

llvm-svn: 22081
This commit is contained in:
Duraid Madina 2005-05-16 06:59:53 +00:00
parent a3ea6446da
commit 3dbbc88f52
1 changed files with 1 additions and 0 deletions

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);