summaryrefslogtreecommitdiff
path: root/src/pass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pass.h')
-rw-r--r--src/pass.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pass.h b/src/pass.h
index da9a12b95..74b501eab 100644
--- a/src/pass.h
+++ b/src/pass.h
@@ -485,7 +485,8 @@ public:
protected:
Pass() = default;
- Pass(Pass&) = default;
+ Pass(const Pass&) = default;
+ Pass(Pass&&) = default;
Pass& operator=(const Pass&) = delete;
};