Don't use the public keyword in NamedIdentifier since it is a structure
This commit is contained in:
parent
c3a0d0eabc
commit
9a27c0c9c7
|
@ -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) {}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue