added support and enable long long support when wxLongLong_t is available even if SIZEOF_LONG_LONG is not under wxMSW

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-01-07 16:58:17 +00:00
parent 3e85709e97
commit b726328b48
2 changed files with 32 additions and 7 deletions

View File

@@ -313,6 +313,11 @@ void VsnprintfTestCase::LongLong()
CMP3("-123456789", "%lld", (wxLongLong_t)-123456789);
CMP3("123456789", "%llu", (wxULongLong_t)123456789);
#ifdef __WXMSW__
CMP3("123456789", "%I64d", (wxLongLong_t)123456789);
CMP3("123456789abcdef", "%I64x", (wxLongLong_t)0x123456789abcdef);
#endif
}
#endif