Skip to content

Commit 2f93c6c

Browse files
committed
Include <cstdint> for int64_t
Signed-off-by: Ismael Luceno <[email protected]>
1 parent 6752c40 commit 2f93c6c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/solvers/smt2/smt2_conv.h

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Author: Daniel Kroening, [email protected]
1414
#include <util/std_expr.h>
1515
#include <util/threeval.h>
1616

17+
#include <cstdint>
1718
#include <map>
1819
#include <set>
1920
#include <sstream>

src/util/dense_integer_map.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ Author: Diffblue Ltd
1212
#ifndef CPROVER_UTIL_DENSE_INTEGER_MAP_H
1313
#define CPROVER_UTIL_DENSE_INTEGER_MAP_H
1414

15+
#include <util/invariant.h>
16+
17+
#include <cstdint>
1518
#include <limits>
1619
#include <unordered_set>
1720
#include <vector>
1821

19-
#include <util/invariant.h>
20-
2122
/// Identity functor. When we use C++20 this can be replaced with std::identity.
2223
class identity_functort
2324
{

0 commit comments

Comments
 (0)