]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/strings/vsnprintf.cpp
document attributes mechanism
[wxWidgets.git] / tests / strings / vsnprintf.cpp
index 0d404d685e2d45769032a4c806be36f439a64474..7a92b857841ae62e422514f014fcbe03d370cb0d 100644 (file)
@@ -463,13 +463,15 @@ void VsnprintfTestCase::WrongFormatStrings()
 
 void VsnprintfTestCase::BigToSmallBuffer()
 {
-    wchar_t bufw[1024], bufw2[16], bufw3[4], bufw4;
     char bufa[1024], bufa2[16], bufa3[4], bufa4;
 
+#if wxUSE_UNICODE
+    wchar_t bufw[1024], bufw2[16], bufw3[4], bufw4;
     Misc(bufw, 1024);
     Misc(bufw2, 16);
     Misc(bufw3, 4);
     Misc(&bufw4, 1);
+#endif // wxUSE_UNICODE
 
     Misc(bufa, 1024);
     Misc(bufa2, 16);