Fix lib\support\Windows/TimeValue.inc(48): warning C4189:
authorYaron Keren <yaron.keren@gmail.com>
Wed, 15 Apr 2015 07:45:52 +0000 (07:45 +0000)
committerYaron Keren <yaron.keren@gmail.com>
Wed, 15 Apr 2015 07:45:52 +0000 (07:45 +0000)
'Error' : local variable is initialized but not referenced.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234982 91177308-0d34-0410-b5e6-96231b3b80d8

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