Can you help?
The following code:
class MT
{
public:
static int ms_number;
};
int MT::ms_number;
yields:
Error 8 error LNK2005: "public: static int MT::ms_number"
(?ms_number@MT@@2HA) already defined in ProjName.obj
Why?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to move this line:
out of your .h file and into a single .cpp file.