X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a243da29c8135be476e47a035a81e695bbb21e26..66f75561893ea7b4bf429d1882d9cc0407ba932d:/src/common/xlocale.cpp?ds=inline diff --git a/src/common/xlocale.cpp b/src/common/xlocale.cpp index f89a755766..b1c08bade9 100644 --- a/src/common/xlocale.cpp +++ b/src/common/xlocale.cpp @@ -32,6 +32,7 @@ #include "wx/xlocale.h" #include +#include // ---------------------------------------------------------------------------- // module globals @@ -76,7 +77,9 @@ wxXLocale& wxXLocale::GetCLocale() { if ( !gs_cLocale ) { - gs_cLocale = new wxXLocale(static_cast(NULL)); + // NOTE: bcc551 has trouble doing static_cast with incomplete + // type definition. reinterpret_cast used as workaround + gs_cLocale = new wxXLocale( reinterpret_cast(NULL) ); } return *gs_cLocale;