summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2021-11-01 18:53:32 +0100
committerGravatar Fernando Sahmkow2022-10-06 21:00:51 +0200
commit3cbe352c18f69596d91c4862382d61a3d6515140 (patch)
treead03ae10647c26a0913344ed62b47a768eb67736 /src/common
parentNVDRV: Cleanup. (diff)
downloadyuzu-3cbe352c18f69596d91c4862382d61a3d6515140.tar.gz
yuzu-3cbe352c18f69596d91c4862382d61a3d6515140.tar.xz
yuzu-3cbe352c18f69596d91c4862382d61a3d6515140.zip
NVDRV: Refactor and add new NvMap.
Diffstat (limited to '')
-rw-r--r--src/common/bit_field.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h
index 7e1df62b1..368b7b98c 100644
--- a/src/common/bit_field.h
+++ b/src/common/bit_field.h
@@ -127,11 +127,14 @@ public:
127 } 127 }
128 } 128 }
129 129
130 // This constructor and assignment operator might be considered ambiguous: 130 BitField(T val) {
131 // Would they initialize the storage or just the bitfield? 131 Assign(val);
132 // Hence, delete them. Use the Assign method to set bitfield values! 132 }
133 BitField(T val) = delete; 133
134 BitField& operator=(T val) = delete; 134 BitField& operator=(T val) {
135 Assign(val);
136 return *this;
137 }
135 138
136 constexpr BitField() noexcept = default; 139 constexpr BitField() noexcept = default;
137 140