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
1406b840
"git@developer.sourcefind.cn:cnjsdfcy/simbricks.git" did not exist on "95589f201a7633bf96fcd0f198e9960b602f8b0e"
Commit
1406b840
authored
Sep 19, 2008
by
Jesse Beder
Browse files
Made Node non-copyable.
parent
c175be7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
include/node.h
include/node.h
+5
-0
No files found.
include/node.h
View file @
1406b840
...
@@ -78,6 +78,11 @@ namespace YAML
...
@@ -78,6 +78,11 @@ namespace YAML
int
Compare
(
const
Node
&
rhs
)
const
;
int
Compare
(
const
Node
&
rhs
)
const
;
friend
bool
operator
<
(
const
Node
&
n1
,
const
Node
&
n2
);
friend
bool
operator
<
(
const
Node
&
n1
,
const
Node
&
n2
);
private:
// shouldn't be copyable! (at least for now)
Node
(
const
Node
&
rhs
);
Node
&
operator
=
(
const
Node
&
rhs
);
private:
private:
void
ParseHeader
(
Scanner
*
pScanner
,
const
ParserState
&
state
);
void
ParseHeader
(
Scanner
*
pScanner
,
const
ParserState
&
state
);
void
ParseTag
(
Scanner
*
pScanner
,
const
ParserState
&
state
);
void
ParseTag
(
Scanner
*
pScanner
,
const
ParserState
&
state
);
...
...
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