1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-01 08:56:32 -05:00

Solves warning about GuestMemory having internal linkage.

It is very hard to explain why this public interface class was defined
in an anonymous namespace inside a header file.
This commit is contained in:
Lucas Clemente Vella
2024-03-31 13:40:04 +01:00
committed by ivchodev
parent d3f67d1e9c
commit 4015b1d397

View File

@@ -31,7 +31,6 @@ enum GuestMemoryFlags : u32 {
UnsafeReadCachedWrite = UnsafeReadWrite | Cached,
};
namespace {
template <typename M, typename T, GuestMemoryFlags FLAGS>
class GuestMemory {
using iterator = T*;
@@ -219,6 +218,5 @@ public:
}
}
};
} // namespace
} // namespace Core::Memory