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
96f5c887
"...composable_kernel_rocm.git" did not exist on "16eb824c90b397722024e494daee75dd9c7e757c"
Commit
96f5c887
authored
Jan 26, 2024
by
Jason Beach
Committed by
Jesse Beder
Jan 26, 2024
Browse files
assign fallback value
parent
c67d701a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/yaml-cpp/node/impl.h
include/yaml-cpp/node/impl.h
+1
-1
No files found.
include/yaml-cpp/node/impl.h
View file @
96f5c887
...
@@ -97,7 +97,7 @@ struct as_if {
...
@@ -97,7 +97,7 @@ struct as_if {
if
(
!
node
.
m_pNode
)
if
(
!
node
.
m_pNode
)
return
fallback
;
return
fallback
;
T
t
;
T
t
=
fallback
;
if
(
convert
<
T
>::
decode
(
node
,
t
))
if
(
convert
<
T
>::
decode
(
node
,
t
))
return
t
;
return
t
;
return
fallback
;
return
fallback
;
...
...
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