Don't use delegating constructor for MetadataRange
This commit is contained in:
parent
53926c467e
commit
bc0e290c17
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ namespace tree_sitter {
|
|||
namespace build_tables {
|
||||
|
||||
struct MetadataRange {
|
||||
MetadataRange() : MetadataRange(0, 0) {}
|
||||
MetadataRange() : min(0), max(0) {}
|
||||
MetadataRange(int min, int max) : min(min), max(max) {}
|
||||
|
||||
bool operator==(const MetadataRange &other) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue