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
06c3d1db
Commit
06c3d1db
authored
Aug 06, 2024
by
NameSirius
Committed by
Jesse Beder
Aug 06, 2024
Browse files
fix compile warning(Pull requests #1305)(Issues #1306)
parent
04dddd69
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
include/yaml-cpp/emitterstyle.h
include/yaml-cpp/emitterstyle.h
+4
-3
include/yaml-cpp/node/type.h
include/yaml-cpp/node/type.h
+4
-3
src/singledocparser.cpp
src/singledocparser.cpp
+2
-3
No files found.
include/yaml-cpp/emitterstyle.h
View file @
06c3d1db
...
...
@@ -8,9 +8,10 @@
#endif
namespace
YAML
{
struct
EmitterStyle
{
enum
value
{
Default
,
Block
,
Flow
};
};
namespace
EmitterStyle
{
enum
value
{
Default
,
Block
,
Flow
};
}
}
#endif // EMITTERSTYLE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
include/yaml-cpp/node/type.h
View file @
06c3d1db
...
...
@@ -8,9 +8,10 @@
#endif
namespace
YAML
{
struct
NodeType
{
enum
value
{
Undefined
,
Null
,
Scalar
,
Sequence
,
Map
};
};
namespace
NodeType
{
enum
value
{
Undefined
,
Null
,
Scalar
,
Sequence
,
Map
};
}
}
#endif // VALUE_TYPE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
src/singledocparser.cpp
View file @
06c3d1db
#include <algorithm>
#include <cstdio>
#include <sstream>
...
...
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