summaryrefslogtreecommitdiff
path: root/ace/Basic_Types.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-02 17:23:06 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-02 17:23:06 +0000
commitfc6ea6cb8a30eeb62eb6c5c39920c1d4c9d6dca6 (patch)
tree84ce30d75e0bf3b2ba941432cf7c85f4bbd83ac9 /ace/Basic_Types.cpp
parentebdc832a2ba52413b153320a3070e693baf23880 (diff)
downloadATCD-fc6ea6cb8a30eeb62eb6c5c39920c1d4c9d6dca6.tar.gz
if using ACE_U_LongLong, #define ACE_USES_ACE_U_LONGLONG and use that in the .i and .cpp files
Diffstat (limited to 'ace/Basic_Types.cpp')
-rw-r--r--ace/Basic_Types.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Basic_Types.cpp b/ace/Basic_Types.cpp
index 81467b4974f..585e80760f1 100644
--- a/ace/Basic_Types.cpp
+++ b/ace/Basic_Types.cpp
@@ -7,7 +7,7 @@
# include "ace/Basic_Types.i"
#endif /* ! __ACE_INLINE__ */
-#if !defined (ACE_WIN32) && !defined (ACE_HAS_LONGLONG_T)
+#if defined (ACE_USES_ACE_U_LONGLONG)
void
ACE_U_LongLong::output (FILE *file) const
{
@@ -16,4 +16,4 @@ ACE_U_LongLong::output (FILE *file) const
else
ACE_OS::fprintf (file, "0x%lx", lo_);
}
-#endif /* ! ACE_WIN32 && ! ACE_HAS_LONGLONG_T */
+#endif /* ACE_USES_ACE_U_LONGLONG */