Skip to content

Error C2664 in CustomDataParser #2

Description

@eruloulayt

When trying to build a solution, error C2664 pops up in CustomDataParser.cpp

void CustomDataParser::Parse(const Json::Value& a_value, ICustomDataContainer* a_customData)
	const
{
	if (a_value.isBool()) {
		a_customData->AddCustomData(_name, a_value.asBool());
	}
	else if (a_value.isNumeric()) {
		a_customData->AddCustomData(_name, a_value.asDouble());
	}
	else if (a_value.isString()) {
		ParseString(a_value.asString(), a_customData);
	}
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions