summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2016-03-12 21:55:26 -0500
committerGravatar Lioncash2016-03-12 21:55:30 -0500
commit45e2fce7c01c5046832990058697876add0e0547 (patch)
tree7163d8b3577e02d7bb188f3d0e9efa999112b952
parentMerge pull request #1266 from Subv/miiapplet (diff)
downloadyuzu-45e2fce7c01c5046832990058697876add0e0547.tar.gz
yuzu-45e2fce7c01c5046832990058697876add0e0547.tar.xz
yuzu-45e2fce7c01c5046832990058697876add0e0547.zip
common_types: Specify const in deleted copy constructor/assignment operator
Diffstat (limited to '')
-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:
56 NonCopyable() = default; 56 NonCopyable() = default;
57 ~NonCopyable() = default; 57 ~NonCopyable() = default;
58 58
59 NonCopyable(NonCopyable&) = delete; 59 NonCopyable(const NonCopyable&) = delete;
60 NonCopyable& operator=(NonCopyable&) = delete; 60 NonCopyable& operator=(const NonCopyable&) = delete;
61}; 61};