summaryrefslogtreecommitdiff
path: root/src/context/cdhashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/cdhashmap.h')
-rw-r--r--src/context/cdhashmap.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/context/cdhashmap.h b/src/context/cdhashmap.h
index 05d68ead5..fc42c0e85 100644
--- a/src/context/cdhashmap.h
+++ b/src/context/cdhashmap.h
@@ -88,9 +88,9 @@
#include <unordered_map>
#include <vector>
-#include "base/cvc4_assert.h"
-#include "context/context.h"
+#include "base/check.h"
#include "context/cdhashmap_forward.h"
+#include "context/context.h"
namespace CVC4 {
namespace context {
@@ -278,7 +278,11 @@ class CDHashMap : public ContextObj {
Context* d_context;
// Nothing to save; the elements take care of themselves
- ContextObj* save(ContextMemoryManager* pCMM) override { Unreachable(); }
+ ContextObj* save(ContextMemoryManager* pCMM) override
+ {
+ Unreachable();
+ SuppressWrongNoReturnWarning;
+ }
// Similarly, nothing to restore
void restore(ContextObj* data) override { Unreachable(); }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback