Don't use the public keyword in NamedIdentifier since it is a structure

This commit is contained in:
Username404-59 2021-09-28 07:10:21 +02:00
parent c3a0d0eabc
commit 9a27c0c9c7
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ struct ParseComponent {
};
namespace StandardComponents {
struct NamedIdentifier: public ParseComponent {
struct NamedIdentifier: ParseComponent {
const string name;
explicit NamedIdentifier(string_view nameText): name(nameText) {}
};