Fix lib\support\Windows/TimeValue.inc(48): warning C4189:
[oota-llvm.git] / lib / Support / Windows / TimeValue.inc
index 0223ab424488737407ddc9190ae14378268269dc..b90b4f1da008693ed2c371fad9ec14f96303fbcb 100644 (file)
@@ -47,6 +47,7 @@ std::string TimeValue::str() const {
   __time64_t OurTime = this->toEpochTime();
   int Error = ::_localtime64_s(&Storage, &OurTime);
   assert(!Error);
+  (void)Error;
   LT = &Storage;
 #endif