Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
a861bdb8
Unverified
Commit
a861bdb8
authored
May 19, 2020
by
Niels Lohmann
Committed by
GitHub
May 19, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2121 from gistrec/fix_compilation_error_msvc
Fixed a compilation error in MSVC
parents
5cfa8a58
9e765f5a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
include/nlohmann/detail/output/binary_writer.hpp
include/nlohmann/detail/output/binary_writer.hpp
+1
-1
single_include/nlohmann/json.hpp
single_include/nlohmann/json.hpp
+1
-1
test/src/unit-cbor.cpp
test/src/unit-cbor.cpp
+2
-2
No files found.
include/nlohmann/detail/output/binary_writer.hpp
View file @
a861bdb8
...
...
@@ -195,7 +195,7 @@ class binary_writer
else
{
if
(
static_cast
<
double
>
(
j
.
m_value
.
number_float
)
>=
static_cast
<
double
>
(
std
::
numeric_limits
<
float
>::
lowest
())
and
static_cast
<
double
>
(
j
.
m_value
.
number_float
)
<=
static_cast
<
double
>
(
std
::
numeric_limits
<
float
>::
max
())
and
static_cast
<
double
>
(
j
.
m_value
.
number_float
)
<=
static_cast
<
double
>
(
(
std
::
numeric_limits
<
float
>::
max
)
())
and
static_cast
<
double
>
(
static_cast
<
float
>
(
j
.
m_value
.
number_float
))
==
static_cast
<
double
>
(
j
.
m_value
.
number_float
))
{
oa
->
write_character
(
get_cbor_float_prefix
(
static_cast
<
float
>
(
j
.
m_value
.
number_float
)));
...
...
single_include/nlohmann/json.hpp
View file @
a861bdb8
...
...
@@ -12206,7 +12206,7 @@ class binary_writer
else
{
if
(
static_cast
<
double
>
(
j
.
m_value
.
number_float
)
>=
static_cast
<
double
>
(
std
::
numeric_limits
<
float
>::
lowest
())
and
static_cast
<
double
>
(
j
.
m_value
.
number_float
)
<=
static_cast
<
double
>
(
std
::
numeric_limits
<
float
>::
max
())
and
static_cast
<
double
>
(
j
.
m_value
.
number_float
)
<=
static_cast
<
double
>
(
(
std
::
numeric_limits
<
float
>::
max
)
())
and
static_cast
<
double
>
(
static_cast
<
float
>
(
j
.
m_value
.
number_float
))
==
static_cast
<
double
>
(
j
.
m_value
.
number_float
))
{
oa
->
write_character
(
get_cbor_float_prefix
(
static_cast
<
float
>
(
j
.
m_value
.
number_float
)));
...
...
test/src/unit-cbor.cpp
View file @
a861bdb8
...
...
@@ -925,7 +925,7 @@ TEST_CASE("CBOR")
}
SECTION
(
"3.40282e+38(max float)"
)
{
float
v
=
std
::
numeric_limits
<
float
>::
max
();
float
v
=
(
std
::
numeric_limits
<
float
>::
max
)
();
json
j
=
v
;
std
::
vector
<
uint8_t
>
expected
=
{
...
...
@@ -953,7 +953,7 @@ TEST_CASE("CBOR")
}
SECTION
(
"1 + 3.40282e+38(more than max float)"
)
{
double
v
=
static_cast
<
double
>
(
std
::
numeric_limits
<
float
>::
max
())
+
0.1e+34
;
double
v
=
static_cast
<
double
>
(
(
std
::
numeric_limits
<
float
>::
max
)
())
+
0.1e+34
;
json
j
=
v
;
std
::
vector
<
uint8_t
>
expected
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment