summaryrefslogtreecommitdiffstats
path: root/src/common/common_types.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-03-13 03:55:26 +0100
committerLioncash <mathew1800@gmail.com>2016-03-13 03:55:30 +0100
commit45e2fce7c01c5046832990058697876add0e0547 (patch)
tree7163d8b3577e02d7bb188f3d0e9efa999112b952 /src/common/common_types.h
parentMerge pull request #1266 from Subv/miiapplet (diff)
downloadyuzu-45e2fce7c01c5046832990058697876add0e0547.tar
yuzu-45e2fce7c01c5046832990058697876add0e0547.tar.gz
yuzu-45e2fce7c01c5046832990058697876add0e0547.tar.bz2
yuzu-45e2fce7c01c5046832990058697876add0e0547.tar.lz
yuzu-45e2fce7c01c5046832990058697876add0e0547.tar.xz
yuzu-45e2fce7c01c5046832990058697876add0e0547.tar.zst
yuzu-45e2fce7c01c5046832990058697876add0e0547.zip
Diffstat (limited to 'src/common/common_types.h')
-rw-r--r--src/common/common_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h
index fa3e0b8d6..1384b7f6f 100644
--- a/src/common/common_types.h
+++ b/src/common/common_types.h
@@ -56,6 +56,6 @@ protected:
NonCopyable() = default;
~NonCopyable() = default;
- NonCopyable(NonCopyable&) = delete;
- NonCopyable& operator=(NonCopyable&) = delete;
+ NonCopyable(const NonCopyable&) = delete;
+ NonCopyable& operator=(const NonCopyable&) = delete;
};