I have a member function that is defined as follows:
Value JSONDeserializer::ParseValue(TDR type, const json_string& valueString);
When
I saw this error when my header file was missing closing brackets.
Causing this error:
// Obj.h class Obj { public: Obj();
Fixing this error:
// Obj.h class Obj { public: Obj(); };