Commit ca77ef71 authored by Florian Eich's avatar Florian Eich Committed by Jesse Beder
Browse files

Fix -Wmaybe-uninitialized warning (#600)

parent ee99c415
...@@ -77,10 +77,11 @@ class YAML_CPP_API RegEx { ...@@ -77,10 +77,11 @@ class YAML_CPP_API RegEx {
private: private:
REGEX_OP m_op; REGEX_OP m_op;
char m_a, m_z; char m_a{};
char m_z{};
std::vector<RegEx> m_params; std::vector<RegEx> m_params;
}; };
} } // namespace YAML
#include "regeximpl.h" #include "regeximpl.h"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment