ERROR

08/10/2019 09:37 izayoi20#1
KINDLY HELP THIS ERROR

#if defined(__APP_TELEPORTERLISTER) && defined(__CLIENT)
map<DWORD, vector<DWORD>> m_aTeleportItem;
void LoadTeleportItem();
vector<DWORD> * GetTeleportItem(DWORD dwWorldId);
#endif

The error :

error C2947: expecting '>' to terminate template-argument-list, found '>>'
08/10/2019 19:54 cookie69#2
Quote:
Originally Posted by izayoi20 View Post
KINDLY HELP THIS ERROR

#if defined(__APP_TELEPORTERLISTER) && defined(__CLIENT)
map<DWORD, vector<DWORD>> m_aTeleportItem;
void LoadTeleportItem();
vector<DWORD> * GetTeleportItem(DWORD dwWorldId);
#endif

The error :

error C2947: expecting '>' to terminate template-argument-list, found '>>'
Try to put a "space" between the arrows
Quote:
map<DWORD, vector<DWORD> > m_aTeleportItem;