summaryrefslogtreecommitdiff
path: root/src/expr/node_algorithm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node_algorithm.cpp')
-rw-r--r--src/expr/node_algorithm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr/node_algorithm.cpp b/src/expr/node_algorithm.cpp
index 59e3d3b03..eda4dadd2 100644
--- a/src/expr/node_algorithm.cpp
+++ b/src/expr/node_algorithm.cpp
@@ -436,8 +436,8 @@ Node substituteCaptureAvoiding(TNode n,
std::vector<TNode> visit;
TNode curr;
visit.push_back(n);
- Assert(src.size() == dest.size(),
- "Substitution domain and range must be equal size");
+ Assert(src.size() == dest.size())
+ << "Substitution domain and range must be equal size";
do
{
curr = visit.back();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback