Refactor VideoCore to use AS sepparate from Channel.

This commit is contained in:
Fernando Sahmkow
2022-10-06 21:00:52 +02:00
parent bb74973bba
commit e462191482
10 changed files with 172 additions and 153 deletions
+7
View File
@@ -18,4 +18,11 @@ struct PairHash {
}
};
template <typename T>
struct IdentityHash {
[[nodiscard]] size_t operator()(T value) const noexcept {
return static_cast<size_t>(value);
}
};
} // namespace Common