[turbine] Remove ClipboardObject::typeMatches
All checks were successful
Build / build (push) Successful in 3m13s

This commit is contained in:
2024-05-28 23:41:21 -05:00
parent 87a848e306
commit cc8ef142b9
2 changed files with 1 additions and 6 deletions

View File

@ -18,11 +18,6 @@ class BaseClipboardObject {
[[nodiscard]]
virtual ox::StringView typeId() const noexcept = 0;
[[nodiscard]]
constexpr auto typeMatch(ox::StringView typeId) const noexcept {
return this->typeId() == typeId;
}
};
template<typename T>