From 6e7a2c38f28cc685d183bc813bf7cf1af2a08351 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Wed, 25 Nov 1998 16:28:55 +0000 Subject: [PATCH] use unsigned for wxString [] operator git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1054 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/confbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? -- 2.50.0