🔨 another try to fix #714

adding std::ios_base::binary when opening all_unicode.json.cbor
This commit is contained in:
Niels Lohmann 2017-10-31 15:04:14 +01:00
parent c4d6626745
commit 5696660eba
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 34 additions and 35 deletions

View file

@ -6789,7 +6789,7 @@ class json_ref
{}
template <class... Args>
json_ref(Args&&... args)
json_ref(Args&& ... args)
: owned_value(std::forward<Args>(args)...),
value_ref(&owned_value),
is_rvalue(true)