mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
Small bug from switching static initialized regexes to lazy ones
This commit is contained in:
@@ -81,7 +81,7 @@ namespace YAML
|
|||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
inline const RegEx& DocIndicator() {
|
inline const RegEx& DocIndicator() {
|
||||||
static const RegEx e = DocStart || DocEnd;
|
static const RegEx e = DocStart() || DocEnd();
|
||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
inline const RegEx& BlockEntry() {
|
inline const RegEx& BlockEntry() {
|
||||||
|
Reference in New Issue
Block a user