]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/longlong.cpp
Committing in .
[wxWidgets.git] / src / common / longlong.cpp
index 4303386f7c7517007a1b10200ee3685596abc7b3..fd0c992c3fc9a1f57b06cc8d9664c845b14643ed 100644 (file)
@@ -25,6 +25,8 @@
     #pragma hdrstop
 #endif
 
+#if wxUSE_LONGLONG
+
 #include "wx/longlong.h"
 
 #include <memory.h>     // for memset()
@@ -56,7 +58,7 @@ void *wxLongLongNative::asArray(void) const
 }
 
 // input/output
-std::ostream& operator<< (std::ostream& o, const wxLongLongNative& ll)
+ostream& operator<< (ostream& o, const wxLongLongNative& ll)
 {
     char result[65];
 
@@ -449,7 +451,7 @@ void *wxLongLongWx::asArray(void) const
 
 // input/output
 
-std::ostream& operator<< (std::ostream& o, const wxLongLongWx& ll)
+ostream& operator<< (ostream& o, const wxLongLongWx& ll)
 {
     char result[65];
 
@@ -465,5 +467,7 @@ std::ostream& operator<< (std::ostream& o, const wxLongLongWx& ll)
 
     return o << result;
 }
-#endif wxUSE_LONGLONG_WX
+#endif
+  // wxUSE_LONGLONG_NATIVE
 
+#endif // wxUSE_LONGLONG