- Compiler Used: Visual Studio 2015 Update 3
- Operating System: Windows (any)
- Architecture (ARM/x86/32bit/64bit/etc): 64bit
Expected Behavior
Invoke from_json with integer too big to fit in 32 bit integer succeeds, returning an int64.
Actual Behavior
Invoke from_json with integer too big to fit in 32 bit integer overflows the integer and returns an incorrect value.
Minimal Example to Reproduce Behavior
print( from_json( "100000000000" ) );