🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Compile error with AS_DEPRECATED

Started by
1 comment, last by WitchLord 6 years, 8 months ago

Hello, I am trying to upgrade AngelScript in a game engine and had a compile error when AS_DEPRECATED is set:


../../source/as_scriptengine.cpp: In member function 'virtual bool asCScriptEngine::IsHandleCompatibleWithObject(void*, int, int) const':
../../source/as_scriptengine.cpp:5346:53: error: 'asCObjectType* asCScriptObject::objType' is protected within this context
   asCObjectType *objType = ((asCScriptObject*)obj)->objType;
                                                     ^~~~~~~
In file included from ../../source/as_scriptengine.cpp:51:0:
../../source/as_scriptobject.h:132:20: note: declared protected here
  asCObjectType    *objType;
                    ^~~~~~~

I am using the revision 2414 from SVN. A hacky workaround is to add `friend class asCScriptEngine;` in asCObjectType.
It would be great if it was fixed. Thanks in advance

Advertisement

Thanks for letting me know.

I've fixed this in revision 2415.

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

This topic is closed to new replies.

Advertisement