aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Win32/TimeValue.inc
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-02-19 03:01:13 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-02-19 03:01:13 +0000
commit23a1cf3e085325783ef2e4078308f913cba5012e (patch)
tree9764496c37ae8dde12c7ad908de7b309632d1e69 /lib/System/Win32/TimeValue.inc
parenta977c486baafe054ed341f13513dcb78d77fe797 (diff)
downloadexternal_llvm-23a1cf3e085325783ef2e4078308f913cba5012e.zip
external_llvm-23a1cf3e085325783ef2e4078308f913cba5012e.tar.gz
external_llvm-23a1cf3e085325783ef2e4078308f913cba5012e.tar.bz2
Change __MINGW to __MINGW32__. Patch submitted by Henrik Bach.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32/TimeValue.inc')
-rw-r--r--lib/System/Win32/TimeValue.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Win32/TimeValue.inc b/lib/System/Win32/TimeValue.inc
index 34a5df1..01f7484 100644
--- a/lib/System/Win32/TimeValue.inc
+++ b/lib/System/Win32/TimeValue.inc
@@ -31,7 +31,7 @@ TimeValue TimeValue::now() {
}
std::string TimeValue::toString() const {
-#ifdef __MINGW
+#ifdef __MINGW32__
// This ban may be lifted by either:
// (i) a future MinGW version other than 1.0 inherents the __time64_t type, or
// (ii) configure tests for either the time_t or __time64_t type.