Initialize default error value

master
Jun Koyama 2021-06-26 20:28:56 +09:00
parent 0ceff1c8f9
commit 8040d3fc6b
No known key found for this signature in database
GPG Key ID: 04354943629F07D3
1 changed files with 1 additions and 0 deletions

View File

@ -195,6 +195,7 @@ export abstract class Value {
JsonError.errorValue = new JsonError('ERROR', true);
this.nullValue = new JsonNullvalue();
this.errorValue = new JsonError('ERROR', true);
Value.s_dummyKeys = new csmVector<string>();
}