diff --git a/cfg/windows.cfg b/cfg/windows.cfg index 0595dd84e..0ec120305 100644 --- a/cfg/windows.cfg +++ b/cfg/windows.cfg @@ -604,6 +604,12 @@ + + + + + + diff --git a/test/testtokenize.cpp b/test/testtokenize.cpp index ee08761ab..566b51bd2 100644 --- a/test/testtokenize.cpp +++ b/test/testtokenize.cpp @@ -6222,7 +6222,8 @@ private: "DWORD64 dword64;" "ULONG64 ulong64;" "LPWSTR lpcwstr;" - "LPCWSTR lpcwstr;"; + "LPCWSTR lpcwstr;" + "PFLOAT ptrToFloat;"; const char expected[] = "int f ; " "unsigned char g ; " @@ -6292,7 +6293,8 @@ private: "unsigned long long dword64 ; " "unsigned long long ulong64 ; " "wchar_t * lpcwstr ; " - "const wchar_t * lpcwstr ;"; + "const wchar_t * lpcwstr ; " + "float * ptrToFloat ;"; // These types should be defined the same on all Windows platforms std::string win32A = tokenizeAndStringifyWindows(code, true, true, Settings::Win32A);