summaryrefslogtreecommitdiff
path: root/ACE/ace/Time_Value.h
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2007-02-05 19:49:04 +0000
committerSteve Huston <shuston@riverace.com>2007-02-05 19:49:04 +0000
commit8d07f782f9e9f4a0297e41704569a0e1849aeba7 (patch)
treef696d0aefe3efdeb0d3d6073c63c90858f3922b9 /ACE/ace/Time_Value.h
parent5834b0bbdbc692a6e1f05cb9280929d0a775a375 (diff)
downloadATCD-8d07f782f9e9f4a0297e41704569a0e1849aeba7.tar.gz
ChangeLogTag:Mon Feb 5 17:16:20 UTC 2007 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ACE/ace/Time_Value.h')
-rw-r--r--ACE/ace/Time_Value.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Time_Value.h b/ACE/ace/Time_Value.h
index 9adfe5c3ffd..1c1af92b4ff 100644
--- a/ACE/ace/Time_Value.h
+++ b/ACE/ace/Time_Value.h
@@ -322,7 +322,7 @@ private:
void normalize (void);
/// Store the values as a timeval.
-#if defined (ACE_WIN32)
+#if defined (ACE_HAS_TIME_T_LONG_MISMATCH)
// Windows' timeval is non-conformant, so swap in a struct that conforms
// to the proper data types to represent the entire time range that this
// class's API can accept.
@@ -338,7 +338,7 @@ private:
timeval ext_tv_;
#else
timeval tv_;
-#endif /* ACE_WIN32 */
+#endif /* ACE_HAS_TIME_T_LONG_MISMATCH */
};
ACE_END_VERSIONED_NAMESPACE_DECL