Skip to content

Commit a9b4f84

Browse files
Merge pull request #61 from gfrontera/master
Missing includes with libstdc++ 13.2.0
2 parents 0d04201 + 7f557ac commit a9b4f84

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

src/client/ByteBuffer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef _HDFS_LIBHDFS3_CLIENT_BYTEBUFFER_H_
66
#define _HDFS_LIBHDFS3_CLIENT_BYTEBUFFER_H_
77

8+
#include <cstdint>
89
#include <cstdlib>
910
#include <string>
1011
#include <iostream>

src/client/Permission.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#ifndef _HDFS_LIBHDFS3_CLIENT_PERMISSION_H_
2929
#define _HDFS_LIBHDFS3_CLIENT_PERMISSION_H_
3030

31+
#include <cstdint>
3132
#include <string>
3233

3334
namespace Hdfs {

src/client/SystemECPolicies.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* limitations under the License.
2121
*/
2222

23+
#include <mutex>
24+
2325
#include "Logger.h"
2426
#include "SystemECPolicies.h"
2527

src/common/MappedFileWrapper.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#include <sys/stat.h>
3232
#include <sys/types.h>
3333

34+
#include <cstdint>
3435
#include <limits>
3536
#include <string>
3637
#include <sstream>

src/rpc/RpcServerInfo.h

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

3131
#include "Hash.h"
3232

33+
#include <cstdint>
3334
#include <string>
3435
#include <sstream>
3536

src/server/DatanodeInfo.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#ifndef _HDFS_LIBHDFS3_SERVER_DATANODEINFO_H_
2929
#define _HDFS_LIBHDFS3_SERVER_DATANODEINFO_H_
3030

31+
#include <cstdint>
3132
#include <string>
3233
#include <sstream>
3334

0 commit comments

Comments
 (0)