Skip to content

Commit

Permalink
🎨 pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jul 1, 2024
1 parent d984968 commit a6822fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Encodings/Encodings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace encodings {

struct NestedVar {
explicit NestedVar(LogicTerm v):
var(std::move(v)), list(){};
var(std::move(v)), list() {};
NestedVar(LogicTerm v, std::vector<NestedVar> l):
var(std::move(v)), list(std::move(l)) {}
LogicTerm var = LogicTerm::noneTerm();
Expand Down

0 comments on commit a6822fb

Please sign in to comment.