Skip to content

Commit

Permalink
Add missing cstdint required by latest gcc include in Ubuntu-23.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
FonsRademakers committed Feb 22, 2024
1 parent 490ce15 commit 73cfdb8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/core/operation/operation.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <set>
#include <string>
#include <vector>
#include <cstdint>

#include "core/functor.h"
#include "core/util/log.h"
Expand Down
1 change: 1 addition & 0 deletions src/core/util/filesystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#define CORE_UTIL_FILESYSTEM_H_

#include <string>
#include <cstdint>

namespace bdm {

Expand Down
2 changes: 2 additions & 0 deletions src/core/util/string.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#include "core/util/string.h"
#include <iostream>
#include <cstdint>

namespace bdm {

std::vector<std::string> Split(const std::string& s,
Expand Down

0 comments on commit 73cfdb8

Please sign in to comment.