diff --git a/src/headers/parsing/StandardComponents.hpp b/src/headers/parsing/StandardComponents.hpp index e26830d..30e18c0 100644 --- a/src/headers/parsing/StandardComponents.hpp +++ b/src/headers/parsing/StandardComponents.hpp @@ -7,6 +7,7 @@ namespace StdComponents { struct String: public ParseComponent { string content; explicit String(const string& str) { content = str; } + String() = default; }; } }