Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
yaml-cpp
Commits
56477115
Commit
56477115
authored
Jan 21, 2012
by
beder
Browse files
Added != for Binary
parent
2731f862
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
include/yaml-cpp/binary.h
include/yaml-cpp/binary.h
+4
-0
No files found.
include/yaml-cpp/binary.h
View file @
56477115
...
...
@@ -48,6 +48,10 @@ namespace YAML
return
true
;
}
bool
operator
!=
(
const
Binary
&
rhs
)
const
{
return
!
(
*
this
==
rhs
);
}
private:
std
::
vector
<
unsigned
char
>
m_data
;
const
unsigned
char
*
m_unownedData
;
...
...
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