summaryrefslogtreecommitdiffstats
path: root/src/common/virtual_buffer.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-01-01 11:54:01 +0100
committerGitHub <noreply@github.com>2021-01-01 11:54:01 +0100
commiteb318ffffc5007c35c42826e23945a82c24900b1 (patch)
tree95a401077534f48f0e6a92a269321ff9ad7aec45 /src/common/virtual_buffer.h
parentMerge pull request #5239 from FearlessTobi/enable-translation (diff)
parentcore/memory: Read and write page table atomically (diff)
downloadyuzu-eb318ffffc5007c35c42826e23945a82c24900b1.tar
yuzu-eb318ffffc5007c35c42826e23945a82c24900b1.tar.gz
yuzu-eb318ffffc5007c35c42826e23945a82c24900b1.tar.bz2
yuzu-eb318ffffc5007c35c42826e23945a82c24900b1.tar.lz
yuzu-eb318ffffc5007c35c42826e23945a82c24900b1.tar.xz
yuzu-eb318ffffc5007c35c42826e23945a82c24900b1.tar.zst
yuzu-eb318ffffc5007c35c42826e23945a82c24900b1.zip
Diffstat (limited to 'src/common/virtual_buffer.h')
-rw-r--r--src/common/virtual_buffer.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/virtual_buffer.h b/src/common/virtual_buffer.h
index 91d430036..fb1a6f81f 100644
--- a/src/common/virtual_buffer.h
+++ b/src/common/virtual_buffer.h
@@ -15,10 +15,12 @@ void FreeMemoryPages(void* base, std::size_t size) noexcept;
template <typename T>
class VirtualBuffer final {
public:
- static_assert(
- std::is_trivially_constructible_v<T>,
- "T must be trivially constructible, as non-trivial constructors will not be executed "
- "with the current allocator");
+ // TODO: Uncomment this and change Common::PageTable::PageInfo to be trivially constructible
+ // using std::atomic_ref once libc++ has support for it
+ // static_assert(
+ // std::is_trivially_constructible_v<T>,
+ // "T must be trivially constructible, as non-trivial constructors will not be executed "
+ // "with the current allocator");
constexpr VirtualBuffer() = default;
explicit VirtualBuffer(std::size_t count) : alloc_size{count * sizeof(T)} {