Skip to content

Commit 6b5d9b7

Browse files
authored
Merge pull request #742 from allredj/test-gen-fix-build-issue-with-sparse-vector
Fix a build issue with test-gen (sparse_vector.h)
2 parents 932d7df + 9ddfb30 commit 6b5d9b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/util/sparse_vector.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ Author: Romain Brenguier
99
#ifndef CPROVER_UTIL_SPARSE_VECTOR_H
1010
#define CPROVER_UTIL_SPARSE_VECTOR_H
1111

12-
#include<cstdint>
12+
#include <cstdint>
13+
#include <map>
14+
#include <assert.h>
1315

1416
template<class T> class sparse_vectort
1517
{

0 commit comments

Comments
 (0)