From d2ce649bec85c2c0764a0f786d2b1ef444321404 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Wed, 5 Dec 2001 17:03:17 +0000 Subject: [PATCH] compilation fixes (I wonder how did you people ever compile it...) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12883 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/longlong.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 9b7aff7cae..ea3fd1c685 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -94,6 +94,7 @@ #endif class WXDLLEXPORT wxLongLongWx; + class WXDLLEXPORT wxULongLongWx; #if defined(__VISUALC__) && !defined(__WIN32__) #define wxLongLong wxLongLongWx #define wxULongLong wxULongLongWx @@ -874,7 +875,7 @@ public: private: // long is at least 32 bits, so represent our 64bit number as 2 longs - unsigned long m_hi + unsigned long m_hi; unsigned long m_lo; #ifdef wxLONGLONG_TEST_MODE -- 2.50.0