Skip to content

Commit

Permalink
Add include of cstdint to resolve definition of uint64_t (#927)
Browse files Browse the repository at this point in the history
This resolves a compilation error experienced on Fedora 38 due to lack of type
definition.
  • Loading branch information
jmciver authored Jul 28, 2023
1 parent 266de2b commit 9a7504a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions smt/smt.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// Copyright (c) 2018-present The Alive2 Authors.
// Distributed under the MIT license that can be found in the LICENSE file.

#include <cstdint>
#include <string>

namespace smt {
Expand Down
1 change: 1 addition & 0 deletions tools/alive_lexer.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// Copyright (c) 2018-present The Alive2 Authors.
// Distributed under the MIT license that can be found in the LICENSE file.

#include <cstdint>
#include <string>
#include <string_view>

Expand Down

0 comments on commit 9a7504a

Please sign in to comment.