@@ -43,17 +43,14 @@ typedef std::auto_ptr<CharReader> CharReaderPtr;
43
43
// ////////////////////////////////
44
44
45
45
Features::Features ()
46
- : allowComments_(true ), strictRoot_(false ),
47
- allowDroppedNullPlaceholders_ (false ), allowNumericKeys_(false ) {}
48
-
46
+ : allowComments_(true ), strictRoot_(false )
47
+ {}
49
48
Features Features::all () { return Features (); }
50
49
51
50
Features Features::strictMode () {
52
51
Features features;
53
52
features.allowComments_ = false ;
54
53
features.strictRoot_ = true ;
55
- features.allowDroppedNullPlaceholders_ = false ;
56
- features.allowNumericKeys_ = false ;
57
54
return features;
58
55
}
59
56
@@ -191,15 +188,6 @@ bool Reader::readValue() {
191
188
currentValue ().swapPayload (v);
192
189
}
193
190
break ;
194
- case tokenArraySeparator:
195
- if (features_.allowDroppedNullPlaceholders_ ) {
196
- // "Un-read" the current token and mark the current value as a null
197
- // token.
198
- current_--;
199
- Value v;
200
- currentValue ().swapPayload (v);
201
- break ;
202
- }
203
191
// Else, fall through...
204
192
default :
205
193
return addError (" Syntax error: value, object or array expected." , token);
@@ -446,11 +434,6 @@ bool Reader::readObject(Token& /*tokenStart*/) {
446
434
if (tokenName.type_ == tokenString) {
447
435
if (!decodeString (tokenName, name))
448
436
return recoverFromError (tokenObjectEnd);
449
- } else if (tokenName.type_ == tokenNumber && features_.allowNumericKeys_ ) {
450
- Value numberName;
451
- if (!decodeNumber (tokenName, numberName))
452
- return recoverFromError (tokenObjectEnd);
453
- name = numberName.asString ();
454
437
} else {
455
438
break ;
456
439
}
0 commit comments