commit | 0010bd96c9b92920e6a137279f7ed0370e5497ed | [log] [tgz] |
---|---|---|
author | NAKAMURA Takumi <geek4civic@gmail.com> | Sat Oct 08 11:31:58 2011 +0000 |
committer | NAKAMURA Takumi <geek4civic@gmail.com> | Sat Oct 08 11:31:58 2011 +0000 |
tree | 604693808174ad71c4c8bf6b9dc1434d34d5a817 | |
parent | 93eafc6ce11f59999bced589dace2daef6d353eb [diff] [blame] |
lib/Frontend/CompilerInstance.cpp: Suppress a "Comparision of unsigned and signed" warning on Cygwin gcc-4.3.4. llvm-svn: 141488
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index c413a42..5526487 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp
@@ -925,7 +925,7 @@ #if LLVM_ON_WIN32 Interval < MaxSeconds * 1000 #else - Interval.tv_sec < MaxSeconds + Interval.tv_sec < (time_t)MaxSeconds #endif );