File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ extension JSONSerialization {
23
23
public static let mutableContainers = ReadingOptions ( rawValue: 1 << 0 )
24
24
public static let mutableLeaves = ReadingOptions ( rawValue: 1 << 1 )
25
25
public static let allowFragments = ReadingOptions ( rawValue: 1 << 2 )
26
- internal static let useReferenceNumericTypes = ReadingOptions ( rawValue: 1 << 3 )
26
+ internal static let useReferenceNumericTypes = ReadingOptions ( rawValue: 1 << 15 )
27
27
}
28
28
29
29
public struct WritingOptions : OptionSet {
Original file line number Diff line number Diff line change 18
18
19
19
// Exposing internal ReadingOptions for tests.
20
20
extension JSONSerialization . ReadingOptions {
21
- fileprivate static let useReferenceNumericTypes = JSONSerialization . ReadingOptions ( rawValue: 1 << 3 )
21
+ fileprivate static let useReferenceNumericTypes = JSONSerialization . ReadingOptions ( rawValue: 1 << 15 )
22
22
}
23
23
24
24
class TestNSJSONSerialization : XCTestCase {
You can’t perform that action at this time.
0 commit comments