visual studio 2013 - C4430: missing type specifier - int assumed. Note: C++ does not support default-int -


i'm using codeproject: http://www.codeproject.com/articles/4682/voice-chat-using-a-client-server-architecture

class mysocket : public csocket   { public:     cdialog *dlg;     cstring name;     int closeflag;      mysocket();     setparent(cdialog *dlg);     //void onconnect(int errcode);     void onreceive(int errcode);     void onclose(int errcode);   }; 

but error in numerous places:

c4430: missing type specifier - int assumed. note: c++ not support default-int  

i think has me using latest version of visual studio (2013).


Comments

Popular posts from this blog

java - Ebean enhancement ignores a model -

javascript - Reference error while trying to encapsulate an animation function -

SQL php on different pages to Insert (mysqli) -