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
3779e425
"examples/community/interpolate_stable_diffusion.py" did not exist on "726aba089d12503249d824bbaf4070f47d0fe44d"
Commit
3779e425
authored
Oct 30, 2009
by
Jesse Beder
Browse files
Fixed silly bug in node cloning
parent
ec62dc54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/node.cpp
src/node.cpp
+1
-1
No files found.
src/node.cpp
View file @
3779e425
...
@@ -27,7 +27,7 @@ namespace YAML
...
@@ -27,7 +27,7 @@ namespace YAML
Node
::
Node
(
const
Mark
&
mark
,
const
std
::
string
&
anchor
,
const
std
::
string
&
tag
,
const
Content
*
pContent
)
Node
::
Node
(
const
Mark
&
mark
,
const
std
::
string
&
anchor
,
const
std
::
string
&
tag
,
const
Content
*
pContent
)
:
m_mark
(
mark
),
m_anchor
(
anchor
),
m_tag
(
tag
),
m_pContent
(
0
),
m_alias
(
false
),
m_pIdentity
(
this
),
m_referenced
(
false
)
:
m_mark
(
mark
),
m_anchor
(
anchor
),
m_tag
(
tag
),
m_pContent
(
0
),
m_alias
(
false
),
m_pIdentity
(
this
),
m_referenced
(
false
)
{
{
if
(
m_
pContent
)
if
(
pContent
)
m_pContent
=
pContent
->
Clone
();
m_pContent
=
pContent
->
Clone
();
}
}
...
...
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