summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/interp/interp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interp/interp.h b/src/interp/interp.h
index eaa3f2c4..df170102 100644
--- a/src/interp/interp.h
+++ b/src/interp/interp.h
@@ -453,6 +453,10 @@ class Store {
explicit Store(const Features& = Features{});
+ Store(const Store&) = delete;
+ Store& operator=(const Store&) = delete;
+ Store& operator=(const Store&&) = delete;
+
bool IsValid(Ref) const;
bool HasValueType(Ref, ValueType) const;
template <typename T>