[turbine] Cleanup

This commit is contained in:
Gary Talent 2023-12-10 17:03:58 -06:00
parent 3ac3b7b5e6
commit 79c85c2a33

View File

@ -20,7 +20,7 @@ class BaseClipboardObject {
virtual ox::String typeId() const noexcept = 0;
[[nodiscard]]
constexpr auto typeMatch(auto name, auto version) const noexcept {
constexpr auto typeMatch(ox::StringView name, int version) const noexcept {
return typeId() == ox::buildTypeId(name, version);
}
};