Skip to content

Commit

Permalink
added cstdint header files (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
troy4eg authored Jun 19, 2024
1 parent 76bc577 commit d630835
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions common/algorithms/hashes.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#define ENGINE_HASHES_H

#include <array>
#include <cstdint>
#include <functional>
#include <iterator>
#include <numeric>
Expand Down
2 changes: 2 additions & 0 deletions common/algorithms/string-algorithms.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

#pragma once

#include <cstdint>

#include "common/functional/identity.h"
#include "common/smart_iterators/transform_iterator.h"
#include "common/wrappers/string_view.h"
Expand Down
2 changes: 2 additions & 0 deletions compiler/compiler-settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// Distributed under the GPL v3 License, see LICENSE.notice.txt

#pragma once

#include <cstdint>
#include <string>
#include <tuple>
#include <vector>
Expand Down
6 changes: 4 additions & 2 deletions compiler/data/performance-inspections.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
// Distributed under the GPL v3 License, see LICENSE.notice.txt

#pragma once
#include "compiler/data/data_ptr.h"
#include "common/wrappers/string_view.h"

#include <cstdint>

#include "common/wrappers/string_view.h"
#include "compiler/data/data_ptr.h"

class PerformanceInspections {
public:
Expand Down
3 changes: 2 additions & 1 deletion compiler/ffi/ffi_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@

#pragma once

#include <cstdint>
#include <string>
#include <vector>
#include <unordered_map>
#include <vector>

enum class FFITypeKind: uint16_t {
Unknown,
Expand Down
1 change: 1 addition & 0 deletions compiler/inferring/multi-key.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#pragma once

#include <cstdint>
#include <string>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions compiler/stage.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#pragma once

#include <cstdint>
#include <unistd.h>

#include "compiler/data/data_ptr.h"
Expand Down

0 comments on commit d630835

Please sign in to comment.