summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-07-30 04:54:19 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-07-30 04:54:19 +0200
commit5b362da37d83421134c97c476e726b44b99f0168 (patch)
tree9bf7697a39429e0f917358ba233186db16bd6f86
parent5288ee1021ce1587f3f27b0bea151e66d9f70812 (diff)
downloadgmrf-5b362da37d83421134c97c476e726b44b99f0168.tar
gmrf-5b362da37d83421134c97c476e726b44b99f0168.zip
Also prevent move in nocopy_t
-rw-r--r--mmss/types.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/mmss/types.hpp b/mmss/types.hpp
index 36ad77b..668e2c2 100644
--- a/mmss/types.hpp
+++ b/mmss/types.hpp
@@ -49,6 +49,8 @@ protected:
private:
nocopy_t(nocopy_t const&) = delete;
nocopy_t& operator=(nocopy_t const&) = delete;
+ nocopy_t(nocopy_t&&) = delete;
+ nocopy_t& operator=(nocopy_t&&) = delete;
};
class context_t;