expected unqualified-id
Posted: Sat Aug 23, 2008 11:47 am
Everything was going along fine, then while writing header files using C++ classes. Then while writing the functions for the classes and making calls into header files such as fat.h and fileutils.h I start getting the error msg ""expected unqualified-id". The error points to the extern "C" line in both files with the following code:
#ifdef __cplusplus
extern "C"
{
#endif
How do I make it stop?
#ifdef __cplusplus
extern "C"
{
#endif
How do I make it stop?