summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes')
-rw-r--r--src/preprocessing/passes/ho_elim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preprocessing/passes/ho_elim.cpp b/src/preprocessing/passes/ho_elim.cpp
index bb524315a..8b64dd4e6 100644
--- a/src/preprocessing/passes/ho_elim.cpp
+++ b/src/preprocessing/passes/ho_elim.cpp
@@ -319,7 +319,7 @@ PreprocessingPassResult HoElim::applyInternal(
{
std::map<Node, Node> lproc = newLambda;
newLambda.clear();
- for (const std::pair<Node, Node>& l : lproc)
+ for (const std::pair<const Node, Node>& l : lproc)
{
Node lambda = l.second;
std::vector<Node> vars;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback