• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Any decent developer here know why these remaining error = / Visual studio 2010

Newbie Spellweaver
Joined
Sep 27, 2016
Messages
53
Reaction score
6
Converted to Vs 2010 please look at the screenshot can someone tell me why these errors won't go away?
PokemonGO - Any decent developer here know why these remaining error =  / Visual studio 2010 - RaGEZONE Forums
 
Junior Spellweaver
Joined
Jun 14, 2015
Messages
123
Reaction score
20
re: MMatchDebug.h error: _set_security_error_handler was removed in later versions of MSVC. Just remove the code that uses it.

re: MMatchGlobal.h error: MMatchServerMode::MSM_NORMAL has a naming collision with POPUPSUBMENUSTATES::MSM_NORMAL in VSSTYLE.H. A solution-wide replacement of MSM_NORMAL with another name, like MSM_NORMAL_, should fix it.

re: MGridMap.h error: MRefCell::iterator is a dependent name (its qualified name is MGridMap<_T>::MRefCell::iterator, which is dependent on _T), so you need to prepend typename to it to signal that it's a type: replace "MRefCell::iterator" with "typename MRefCell::iterator".
 
Upvote 0
Back
Top