Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.69K
~4K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for abrou

there could be a possibility of this error if the header file is included before the #include "stdafx.h" in cpp file. include the header file after #include "stdafx.h". For ex : //Below would throw C2653 #include "yourdeclarion.h" #include "stdafx.h" //Below would compile properly #include "stdafx.h" #include "yourdeclarion.h"

Member Avatar for deepavj
0
4K

The End.