extra qualification error in C++

后端 未结 5 1441
轮回少年
轮回少年 2020-11-30 01:37

I have a member function that is defined as follows:

Value JSONDeserializer::ParseValue(TDR type, const json_string& valueString);

When

5条回答
  •  借酒劲吻你
    2020-11-30 02:09

    This means a class is redundantly mentioned with a class function. Try removing JSONDeserializer::

提交回复
热议问题