From 1f085a8cd210dd5337922f68739a07f21878e226 Mon Sep 17 00:00:00 2001 From: LuisAntonRebollo Date: Mon, 5 May 2014 19:58:55 +0200 Subject: [PATCH] Fix error on Clang compiler: 'ival' is a protected member of 'Dictionary::Entry' --- Engine/source/console/consoleInternal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Engine/source/console/consoleInternal.h b/Engine/source/console/consoleInternal.h index 0a9c9060e..07c336d98 100644 --- a/Engine/source/console/consoleInternal.h +++ b/Engine/source/console/consoleInternal.h @@ -311,6 +311,8 @@ public: // NOTE: This is protected to ensure no one outside // of this structure is messing with it. + friend class Dictionary; + #pragma warning( push ) #pragma warning( disable : 4201 ) // warning C4201: nonstandard extension used : nameless struct/union