From: Yaron Keren Date: Wed, 15 Apr 2015 07:45:52 +0000 (+0000) Subject: Fix lib\support\Windows/TimeValue.inc(48): warning C4189: X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=dc374b5eb4f7cc5415cde4b9f3412ac2877b6817 Fix lib\support\Windows/TimeValue.inc(48): warning C4189: '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 --- diff --git a/lib/Support/Windows/TimeValue.inc b/lib/Support/Windows/TimeValue.inc index 0223ab42448..b90b4f1da00 100644 --- a/lib/Support/Windows/TimeValue.inc +++ b/lib/Support/Windows/TimeValue.inc @@ -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