summaryrefslogtreecommitdiff
path: root/src/theory/sep
diff options
context:
space:
mode:
authorGereon Kremer <gkremer@stanford.edu>2020-12-10 01:10:36 +0100
committerGitHub <noreply@github.com>2020-12-09 16:10:36 -0800
commitcc6e04b4572180596ae25001d4a1b99884030a62 (patch)
tree39a881a7e71491d57f92793f16abc597a565dce2 /src/theory/sep
parenta11084e760f3ddf4e95e9aeabada3c3e66810a99 (diff)
Fixed a bunch of clang warnings. (#5637)
Diffstat (limited to 'src/theory/sep')
-rw-r--r--src/theory/sep/theory_sep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index d03cc8570..d9d9415fc 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -755,7 +755,7 @@ void TheorySep::postCheck(Effort level)
// get model values
std::map<int, Node> mvals;
- for (const std::pair<int, Node>& sub_element : d_label_map[satom][slbl])
+ for (const std::pair<const int, Node>& sub_element : d_label_map[satom][slbl])
{
int sub_index = sub_element.first;
Node sub_lbl = sub_element.second;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback