From 9fac010d8e3ef373d26ac3f24deaeed06eeafb19 Mon Sep 17 00:00:00 2001 From: "Andrew V. Jones" Date: Wed, 3 Jun 2020 21:34:43 +0100 Subject: [PATCH] Fixing build errors when building test-z3 (#4496) Signed-off-by: Andrew V. Jones --- src/math/hilbert/heap_trie.h | 2 +- src/test/mpff.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/math/hilbert/heap_trie.h b/src/math/hilbert/heap_trie.h index 3c6ecd1cb..add64d2a0 100644 --- a/src/math/hilbert/heap_trie.h +++ b/src/math/hilbert/heap_trie.h @@ -37,13 +37,13 @@ Notes: #ifndef HEAP_TRIE_H_ #define HEAP_TRIE_H_ +#include #include "util/map.h" #include "util/vector.h" #include "util/buffer.h" #include "util/statistics.h" #include "util/small_object_allocator.h" - template class heap_trie { diff --git a/src/test/mpff.cpp b/src/test/mpff.cpp index c78489f21..83c500b49 100644 --- a/src/test/mpff.cpp +++ b/src/test/mpff.cpp @@ -16,7 +16,8 @@ Author: Revision History: --*/ -#include +#include +#include #include "util/mpff.h" #include "util/mpz.h" #include "util/mpq.h"