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
5ee651c3
Commit
5ee651c3
authored
Jun 21, 2017
by
Niels Lohmann
Committed by
GitHub
Jun 21, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #630 from Chocobo1/doc_neq
fix typo in operator__notequal example
parents
dad6051f
0395f3fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
operator__notequal.cpp
doc/examples/operator__notequal.cpp
+4
-4
No files found.
doc/examples/operator__notequal.cpp
View file @
5ee651c3
...
@@ -16,8 +16,8 @@ int main()
...
@@ -16,8 +16,8 @@ int main()
// output values and comparisons
// output values and comparisons
std
::
cout
<<
std
::
boolalpha
;
std
::
cout
<<
std
::
boolalpha
;
std
::
cout
<<
array_1
<<
"
=
= "
<<
array_2
<<
" "
<<
(
array_1
!=
array_2
)
<<
'\n'
;
std
::
cout
<<
array_1
<<
"
!
= "
<<
array_2
<<
" "
<<
(
array_1
!=
array_2
)
<<
'\n'
;
std
::
cout
<<
object_1
<<
"
=
= "
<<
object_2
<<
" "
<<
(
object_1
!=
object_2
)
<<
'\n'
;
std
::
cout
<<
object_1
<<
"
!
= "
<<
object_2
<<
" "
<<
(
object_1
!=
object_2
)
<<
'\n'
;
std
::
cout
<<
number_1
<<
"
=
= "
<<
number_2
<<
" "
<<
(
number_1
!=
number_2
)
<<
'\n'
;
std
::
cout
<<
number_1
<<
"
!
= "
<<
number_2
<<
" "
<<
(
number_1
!=
number_2
)
<<
'\n'
;
std
::
cout
<<
string_1
<<
"
=
= "
<<
string_2
<<
" "
<<
(
string_1
!=
string_2
)
<<
'\n'
;
std
::
cout
<<
string_1
<<
"
!
= "
<<
string_2
<<
" "
<<
(
string_1
!=
string_2
)
<<
'\n'
;
}
}
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