File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -137,12 +137,12 @@ bool RootSignatureParser::parseDescriptorTableClause() {
137
137
}
138
138
139
139
// Helper struct defined to use the overloaded notation of std::visit.
140
- template <class ... Ts> struct ParseMethods : Ts... { using Ts::operator ()...; };
141
- template <class ... Ts> ParseMethods (Ts...) -> ParseMethods <Ts...>;
140
+ template <class ... Ts> struct ParseMethod : Ts... { using Ts::operator ()...; };
141
+ template <class ... Ts> ParseMethod (Ts...) -> ParseMethod <Ts...>;
142
142
143
143
bool RootSignatureParser::parseParam (ParamType Ref) {
144
144
return std::visit (
145
- ParseMethods {
145
+ ParseMethod {
146
146
[this ](Register *X) -> bool { return parseRegister (X); },
147
147
[this ](uint32_t *X) -> bool {
148
148
return consumeExpectedToken (TokenKind::pu_equal,
You can’t perform that action at this time.
0 commit comments