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

Results 1 to 2 of 2
  1. #1
    Member PokemonGO is offline
    MemberRank
    Sep 2016 Join Date
    57Posts

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

    Converted to Vs 2010 please look at the screenshot can someone tell me why these errors won't go away?


  2. #2
    Valued Member Keristrasza is offline
    MemberRank
    Jun 2015 Join Date
    128Posts

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

    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".



Advertisement