From 995de2b4886032a0c1e7100d6d478ffb06ec3e4a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 29 Oct 1999 15:17:48 +0000 Subject: [PATCH] compilation fix for AIX git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/confbase.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/wx/confbase.h b/include/wx/confbase.h index c4cfa87538..763235df8a 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -230,11 +230,7 @@ public: protected: static bool IsImmutable(const wxString& key) -#if !defined(__WXMAC__) && !defined(__EMX__) - { return !key.IsEmpty() && key[0u] == wxCONFIG_IMMUTABLE_PREFIX; } -#else - { return !key.IsEmpty() && key[0ul] == wxCONFIG_IMMUTABLE_PREFIX; } -#endif + { return !key.IsEmpty() && key[0] == wxCONFIG_IMMUTABLE_PREFIX; } private: // are we doing automatic environment variable expansion? -- 2.50.0