From 0caed281f7f47713ae8be61ed75bac03596e1add Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 8 Oct 2011 11:31:58 +0000 Subject: lib/Frontend/CompilerInstance.cpp: Suppress a "Comparision of unsigned and signed" warning on Cygwin gcc-4.3.4. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141488 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Frontend/CompilerInstance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Frontend/CompilerInstance.cpp') diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index c413a42f44..55264870b8 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp @@ -925,7 +925,7 @@ void LockFileManager::waitForUnlock() { #if LLVM_ON_WIN32 Interval < MaxSeconds * 1000 #else - Interval.tv_sec < MaxSeconds + Interval.tv_sec < (time_t)MaxSeconds #endif ); -- cgit v1.2.3-18-g5258