Commit 3dbbc88f authored by Duraid Madina's avatar Duraid Madina
Browse files

comment the hpux bit

llvm-svn: 22081
parent a3ea6446
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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);