Run clang-format on project

This commit is contained in:
apio 2022-08-03 15:30:35 +00:00
parent 02a65ebb58
commit cc5013ec6f
2 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,6 @@
#include "UnaryOpNode.h" #include "UnaryOpNode.h"
UnaryOpNode::UnaryOpNode(std::shared_ptr<ExprNode> operand) UnaryOpNode::UnaryOpNode(std::shared_ptr<ExprNode> operand) : operand(operand), ExprNode()
: operand(operand), ExprNode()
{ {
} }