aboutsummaryrefslogtreecommitdiff
path: root/GateAnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'GateAnd.h')
-rw-r--r--GateAnd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/GateAnd.h b/GateAnd.h
index df456dd..4c19836 100644
--- a/GateAnd.h
+++ b/GateAnd.h
@@ -3,6 +3,8 @@
#include "Node.h"
class GateAnd : public Node {
+ using Node::Node;
+
public:
GateAnd() = default;
~GateAnd() = default;
@@ -11,8 +13,6 @@ public:
protected:
SignalLevel level();
- using Node::Node;
-
private:
GateAnd(const GateAnd * prototype);
constexpr static const char * type = "and";