Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
d7705170
Unverified
Commit
d7705170
authored
Mar 24, 2021
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🐛
add missing negation
parent
edd24629
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
json.hpp
single_include/nlohmann/json.hpp
+2
-2
No files found.
single_include/nlohmann/json.hpp
View file @
d7705170
...
...
@@ -20313,7 +20313,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
reference
at
(
const
KeyType
&
key
)
{
// at only works for objects
if
(
JSON_HEDLEY_UNLIKELY
(
is_object
()))
if
(
JSON_HEDLEY_UNLIKELY
(
!
is_object
()))
{
JSON_THROW
(
type_error
::
create
(
304
,
"cannot use at() with "
+
std
::
string
(
type_name
()),
*
this
));
}
...
...
@@ -20364,7 +20364,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
const_reference
at
(
const
KeyType
&
key
)
const
{
// at only works for objects
if
(
JSON_HEDLEY_UNLIKELY
(
is_object
()))
if
(
JSON_HEDLEY_UNLIKELY
(
!
is_object
()))
{
JSON_THROW
(
type_error
::
create
(
304
,
"cannot use at() with "
+
std
::
string
(
type_name
()),
*
this
));
}
...
...
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