From: Karsten Ballüder Date: Wed, 25 Nov 1998 16:28:55 +0000 (+0000) Subject: use unsigned for wxString [] operator X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6e7a2c38f28cc685d183bc813bf7cf1af2a08351 use unsigned for wxString [] operator git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1054 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/confbase.h b/include/wx/confbase.h index 2ce903fec7..1b51cae526 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -222,7 +222,7 @@ public: protected: static bool IsImmutable(const wxString& key) - { return key[0] == wxCONFIG_IMMUTABLE_PREFIX; } + { return key[0u] == wxCONFIG_IMMUTABLE_PREFIX; } private: // are we doing automatic environment variable expansion?