Add a default constructor to a struct in StandardComponents.hpp.

This commit is contained in:
Username404-59 2021-04-01 19:22:18 +02:00
parent 9ade88b6aa
commit 829e53080c
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ namespace StdComponents {
struct String: public ParseComponent { struct String: public ParseComponent {
string content; string content;
explicit String(const string& str) { content = str; } explicit String(const string& str) { content = str; }
String() = default;
}; };
} }
} }