Skip to content

Commit

Permalink
Remove unused constructor for DescriptorToken
Browse files Browse the repository at this point in the history
  • Loading branch information
gibber9809 committed Dec 5, 2024
1 parent c5ca1bc commit f3be5df
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions components/core/src/clp_s/search/ColumnDescriptor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ class DescriptorToken {
: TraceableException(error_code, filename, line_number) {}
};

// Constructors
DescriptorToken() = default;

/**
* Creates a DescriptorToken from an escaped token string. The escape sequences '\\' and '\*'
* are supported in order to distinguish the literal '*' from the '*' used to match hierarchies
Expand Down Expand Up @@ -101,7 +98,7 @@ class DescriptorToken {
}
}

bool m_wildcard{};
bool m_wildcard{false};
std::string m_token;
};

Expand Down

0 comments on commit f3be5df

Please sign in to comment.