Browse Source

common_types: Remove NonCopyable struct

Now that we're moved over to the YUZU_ defines, we can get rid of this
struct.
nce_cpp
Lioncash 4 years ago
parent
commit
45fd47ef0a
  1. 10
      src/common/common_types.h

10
src/common/common_types.h

@ -46,13 +46,3 @@ using GPUVAddr = u64; ///< Represents a pointer in the GPU virtual address space
using u128 = std::array<std::uint64_t, 2>; using u128 = std::array<std::uint64_t, 2>;
static_assert(sizeof(u128) == 16, "u128 must be 128 bits wide"); static_assert(sizeof(u128) == 16, "u128 must be 128 bits wide");
// An inheritable class to disallow the copy constructor and operator= functions
class NonCopyable {
protected:
constexpr NonCopyable() = default;
~NonCopyable() = default;
NonCopyable(const NonCopyable&) = delete;
NonCopyable& operator=(const NonCopyable&) = delete;
};
Loading…
Cancel
Save