Skip to content

Commit 5b3e8a8

Browse files
committed
partially revert 'Added features that allow the reader to accept common non-standard JSON.'
revert '642befc836ac5093b528e7d8b4fd66b66735a98c', but keep the *added* methods for `decodedNumber()` and `decodedDouble()`.
1 parent 4a6b5a3 commit 5b3e8a8

File tree

2 files changed

+2
-25
lines changed

2 files changed

+2
-25
lines changed

include/json/features.h

-6
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@ class JSON_API Features {
4444
/// \c true if root must be either an array or an object value. Default: \c
4545
/// false.
4646
bool strictRoot_;
47-
48-
/// \c true if dropped null placeholders are allowed. Default: \c false.
49-
bool allowDroppedNullPlaceholders_;
50-
51-
/// \c true if numeric object key are allowed. Default: \c false.
52-
bool allowNumericKeys_;
5347
};
5448

5549
} // namespace Json

src/lib_json/json_reader.cpp

+2-19
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,14 @@ typedef std::auto_ptr<CharReader> CharReaderPtr;
4343
// ////////////////////////////////
4444

4545
Features::Features()
46-
: allowComments_(true), strictRoot_(false),
47-
allowDroppedNullPlaceholders_(false), allowNumericKeys_(false) {}
48-
46+
: allowComments_(true), strictRoot_(false)
47+
{}
4948
Features Features::all() { return Features(); }
5049

5150
Features Features::strictMode() {
5251
Features features;
5352
features.allowComments_ = false;
5453
features.strictRoot_ = true;
55-
features.allowDroppedNullPlaceholders_ = false;
56-
features.allowNumericKeys_ = false;
5754
return features;
5855
}
5956

@@ -191,15 +188,6 @@ bool Reader::readValue() {
191188
currentValue().swapPayload(v);
192189
}
193190
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-
}
203191
// Else, fall through...
204192
default:
205193
return addError("Syntax error: value, object or array expected.", token);
@@ -446,11 +434,6 @@ bool Reader::readObject(Token& /*tokenStart*/) {
446434
if (tokenName.type_ == tokenString) {
447435
if (!decodeString(tokenName, name))
448436
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();
454437
} else {
455438
break;
456439
}

0 commit comments

Comments
 (0)