mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
Fixed null key/value bug, added tests
This commit is contained in:
@@ -30,8 +30,7 @@ namespace YAML
|
||||
TT_ANCHOR,
|
||||
TT_ALIAS,
|
||||
TT_TAG,
|
||||
TT_SCALAR,
|
||||
TT_NULL
|
||||
TT_SCALAR
|
||||
};
|
||||
|
||||
const std::string TokenNames[] = {
|
||||
@@ -52,8 +51,7 @@ namespace YAML
|
||||
"ANCHOR",
|
||||
"ALIAS",
|
||||
"TAG",
|
||||
"SCALAR",
|
||||
"NULL"
|
||||
"SCALAR"
|
||||
};
|
||||
|
||||
struct Token {
|
||||
|
Reference in New Issue
Block a user