X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bd63e363c263e069521a5629bdff684948469747..e9e8b38179b147dd04f5c19af7e56a94342e93a7:/include/wx/string.h diff --git a/include/wx/string.h b/include/wx/string.h index 95d440a362..f51d3f0660 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -2121,7 +2121,7 @@ public: // insert an unsigned long into string wxString& operator<<(unsigned long ul) { return (*this) << Format(wxT("%lu"), ul); } -#if defined wxLongLong_t && !defined wxLongLongIsLong +#ifdef wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG // insert a long long if they exist and aren't longs wxString& operator<<(wxLongLong_t ll) { @@ -2132,7 +2132,7 @@ public: { return (*this) << Format("%" wxLongLongFmtSpec "u" , ull); } -#endif // wxLongLong_t && !wxLongLongIsLong +#endif // wxHAS_LONG_LONG_T_DIFFERENT_FROM_LONG // insert a float into string wxString& operator<<(float f) { return (*this) << Format(wxT("%f"), f); }