Skip to content

Commit 9a7504a

Browse files
authored
Add include of cstdint to resolve definition of uint64_t (#927)
This resolves a compilation error experienced on Fedora 38 due to lack of type definition.
1 parent 266de2b commit 9a7504a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

smt/smt.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Copyright (c) 2018-present The Alive2 Authors.
44
// Distributed under the MIT license that can be found in the LICENSE file.
55

6+
#include <cstdint>
67
#include <string>
78

89
namespace smt {

tools/alive_lexer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Copyright (c) 2018-present The Alive2 Authors.
44
// Distributed under the MIT license that can be found in the LICENSE file.
55

6+
#include <cstdint>
67
#include <string>
78
#include <string_view>
89

0 commit comments

Comments
 (0)