aboutsummaryrefslogtreecommitdiff
path: root/GateAnd.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-12 20:40:29 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-12 20:40:29 +0200
commit068a4971084bd1e415c6523c3b5eb5a48de520ca (patch)
treedfadac49c27f22dc0ada6dcfa464be99afb1827b /GateAnd.h
parent9270528a26cfd9f19d79519a61712c9d2f426106 (diff)
fix NodeInput stuff
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;
};