Replaced typedef with #define for VC++ 1.5, to prevent 'no constructor' error

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2001-05-22 10:56:54 +00:00
parent 25832b3f2b
commit 92f5ff59cc

View File

@ -88,7 +88,12 @@
#endif
class WXDLLEXPORT wxLongLongWx;
#if defined(__VISUALC__) && !defined(__WIN32__)
#define wxLongLong wxLongLongWx
#else
typedef wxLongLongWx wxLongLong;
#endif
#else
// if nothing is defined, use native implementation by default, of course
#ifndef wxUSE_LONGLONG_NATIVE