summaryrefslogtreecommitdiff
path: root/src/base/map_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/map_util.h')
-rw-r--r--src/base/map_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/map_util.h b/src/base/map_util.h
index 786e22ae0..67f369ce7 100644
--- a/src/base/map_util.h
+++ b/src/base/map_util.h
@@ -38,7 +38,7 @@
#ifndef CVC4__BASE__MAP_UTIL_H
#define CVC4__BASE__MAP_UTIL_H
-#include "base/cvc4_check.h"
+#include "base/check.h"
namespace CVC4 {
@@ -88,7 +88,7 @@ template <class M>
const MapMappedTypeT<M>& FindOrDie(const M& map, const MapKeyTypeT<M>& key)
{
auto it = map.find(key);
- CVC4_CHECK(it != map.end()) << "The map does not contain the key.";
+ AlwaysAssert(it != map.end()) << "The map does not contain the key.";
return (*it).second;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback