From dc374b5eb4f7cc5415cde4b9f3412ac2877b6817 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Wed, 15 Apr 2015 07:45:52 +0000 Subject: [PATCH] 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 --- lib/Support/Windows/TimeValue.inc | 1 + 1 file changed, 1 insertion(+) 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