aboutsummaryrefslogtreecommitdiff
path: root/GateAnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'GateAnd.h')
-rw-r--r--GateAnd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/GateAnd.h b/GateAnd.h
index 5de827c..2991c1d 100644
--- a/GateAnd.h
+++ b/GateAnd.h
@@ -5,7 +5,6 @@
class GateAnd : public Node {
public:
GateAnd() = default;
- GateAnd(const GateAnd * prototype);
~GateAnd() = default;
virtual GateAnd * clone() const;
@@ -17,6 +16,7 @@ protected:
using Node::Node;
private:
+ GateAnd(const GateAnd * prototype);
constexpr static const char * type = "and";
static GateAnd instance;
};