Skip to content

Commit

Permalink
Merge pull request diffblue#8426 from ismaell/missing-cstdint
Browse files Browse the repository at this point in the history
Include <cstdint> for int64_t
  • Loading branch information
tautschnig authored Aug 26, 2024
2 parents 6752c40 + 2f93c6c commit c193c27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/solvers/smt2/smt2_conv.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Author: Daniel Kroening, [email protected]
#include <util/std_expr.h>
#include <util/threeval.h>

#include <cstdint>
#include <map>
#include <set>
#include <sstream>
Expand Down
5 changes: 3 additions & 2 deletions src/util/dense_integer_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ Author: Diffblue Ltd
#ifndef CPROVER_UTIL_DENSE_INTEGER_MAP_H
#define CPROVER_UTIL_DENSE_INTEGER_MAP_H

#include <util/invariant.h>

#include <cstdint>
#include <limits>
#include <unordered_set>
#include <vector>

#include <util/invariant.h>

/// Identity functor. When we use C++20 this can be replaced with std::identity.
class identity_functort
{
Expand Down

0 comments on commit c193c27

Please sign in to comment.