Change arrangement of optional and help text arguments

This commit is contained in:
Alexander Bock
2016-09-14 16:39:43 +02:00
parent 09c1b4be6d
commit 8bbf1c3d0d
2 changed files with 6 additions and 5 deletions

View File

@@ -56,8 +56,8 @@ struct Verifier {
};
struct DocumentationEntry {
DocumentationEntry(std::string key, Verifier* t, Optional optional = Optional::No,
std::string doc = "");
DocumentationEntry(std::string key, Verifier* t, std::string doc = "",
Optional optional = Optional::No);
std::string key;
std::shared_ptr<Verifier> tester;