mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Common/LinearDiskCache: Move interface into Common namespace
Gets the interface out of the global namespace.
This commit is contained in:
@ -27,6 +27,8 @@
|
||||
// value_type[value_size] value;
|
||||
//}
|
||||
|
||||
namespace Common
|
||||
{
|
||||
template <typename K, typename V>
|
||||
class LinearDiskCacheReader
|
||||
{
|
||||
@ -163,3 +165,4 @@ private:
|
||||
File::IOFile m_file;
|
||||
u32 m_num_entries = 0;
|
||||
};
|
||||
} // namespace Common
|
||||
|
Reference in New Issue
Block a user