cwObject.cpp : Generate an error message when a token is not recognized by the string->object parser.

This commit is contained in:
kevin 2024-07-21 16:12:17 -04:00
parent 15487e3eb4
commit c1e0765d92

View File

@ -941,7 +941,8 @@ cw::rc_t cw::objectFromString( const char* s, object_t*& objRef )
if( lexId == lex::kErrorLexTId )
{
goto errLabel;
rc = cwLogError(kSyntaxErrorRC,"A lexical element was not recognized.");
goto errLabel;
}
// if the root has only one child then make the child the root