Skip to content

Commit a88f70d

Browse files
committed
Add missing includes for libstdc++
1 parent 58ced23 commit a88f70d

File tree

7 files changed

+8
-0
lines changed

7 files changed

+8
-0
lines changed

hphp/runtime/vm/fcall-args-flags.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
#pragma once
1818

19+
#include <cstdint>
20+
1921
namespace HPHP {
2022

2123
enum FCallArgsFlags : uint16_t {

hphp/runtime/vm/jit/timer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#pragma once
1818

19+
#include <cstdint>
1920
#include <string>
2021
#include <vector>
2122

hphp/tools/configs/generate_configs_lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,7 @@ pub fn generate_loader(sections: Vec<ConfigSection>, output_dir: PathBuf) {
11801180
let h_content = format!(
11811181
r#"#pragma once
11821182
1183+
#include <cstdint>
11831184
#include <string>
11841185
11851186
namespace HPHP {{

hphp/util/blob-encoder.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include <folly/container/F14Map.h>
2929
#include <folly/container/F14Set.h>
3030

31+
#include <bitset>
3132
#include <filesystem>
3233
#include <memory>
3334
#include <set>

hphp/util/hdf-extract.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#pragma once
1818

19+
#include <cstdint>
1920
#include <map>
2021
#include <string>
2122
#include <vector>

hphp/util/hdf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
#pragma once
1818

19+
#include <cstdint>
1920
#include <string>
2021
#include <map>
2122
#include <set>

hphp/util/numa.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "hphp/util/portability.h"
2020
#include <folly/Bits.h>
2121
#include <numaif.h>
22+
#include <algorithm>
2223
#include <fstream>
2324
#include <map>
2425
#include <thread>

0 commit comments

Comments
 (0)