Skip to content
Snippets Groups Projects
Commit ca77ef71 authored by Florian Eich's avatar Florian Eich Committed by Jesse Beder
Browse files

Fix -Wmaybe-uninitialized warning (#600)

parent ee99c415
No related branches found
No related tags found
No related merge requests found
......@@ -77,10 +77,11 @@ class YAML_CPP_API RegEx {
private:
REGEX_OP m_op;
char m_a, m_z;
char m_a{};
char m_z{};
std::vector<RegEx> m_params;
};
}
} // namespace YAML
#include "regeximpl.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment