Add combinational logic and concept classes

This commit is contained in:
2025-09-02 17:01:01 -04:00
parent d36d03dcc3
commit 4827177703
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ class UnaryExpression
: public ExpressionPart
{
public:
UnaryExpression(Operator &op, std::shared_ptr<Operand> &operand)
UnaryExpression(Operator &op, const std::shared_ptr<Operand> &operand)
: parts(std::make_pair(op, operand))
{}
public: