summaryrefslogtreecommitdiffstats
path: root/src/common/common_types.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-03-13 03:57:18 +0100
committerLioncash <mathew1800@gmail.com>2016-03-13 03:57:18 +0100
commit38376b833efb55a9cb452f22a783ae4411dd3926 (patch)
tree5d6808af845f1b8b73d6949b8588cc1f423c9481 /src/common/common_types.h
parentcommon_types: Specify const in deleted copy constructor/assignment operator (diff)
downloadyuzu-38376b833efb55a9cb452f22a783ae4411dd3926.tar
yuzu-38376b833efb55a9cb452f22a783ae4411dd3926.tar.gz
yuzu-38376b833efb55a9cb452f22a783ae4411dd3926.tar.bz2
yuzu-38376b833efb55a9cb452f22a783ae4411dd3926.tar.lz
yuzu-38376b833efb55a9cb452f22a783ae4411dd3926.tar.xz
yuzu-38376b833efb55a9cb452f22a783ae4411dd3926.tar.zst
yuzu-38376b833efb55a9cb452f22a783ae4411dd3926.zip
Diffstat (limited to '')
-rw-r--r--src/common/common_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h
index 1384b7f6f..9f51dff18 100644
--- a/src/common/common_types.h
+++ b/src/common/common_types.h
@@ -53,7 +53,7 @@ typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space
// An inheritable class to disallow the copy constructor and operator= functions
class NonCopyable {
protected:
- NonCopyable() = default;
+ constexpr NonCopyable() = default;
~NonCopyable() = default;
NonCopyable(const NonCopyable&) = delete;