Skip to content

Commit ceae460

Browse files
Merge pull request #5608 from lukin-oleksiy/gcc-15-compilation-fix
gcc-15 compilation fix ( uintXX_t types)
2 parents 8fbca59 + 27f9634 commit ceae460

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

plugin/x/tests/driver/connector/warning.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#ifndef PLUGIN_X_TESTS_DRIVER_CONNECTOR_WARNING_H_
2727
#define PLUGIN_X_TESTS_DRIVER_CONNECTOR_WARNING_H_
2828

29+
#include <cstdint>
2930
#include <memory>
3031
#include <ostream>
3132
#include <string>

router/src/harness/include/mysql/harness/stdx/io/file_handle.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#ifndef MYSQL_HARNESS_STDX_FILE_HANDLE_INCLUDED
2626
#define MYSQL_HARNESS_STDX_FILE_HANDLE_INCLUDED
2727

28+
#include <cstdint>
2829
#include <string>
2930
#include <system_error>
3031
#include <utility> // exchange

router/src/harness/src/keyring/keyring_file.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include "keyring/keyring_file.h"
2727

2828
#include <array>
29+
#include <cstdint>
2930
#include <fstream>
3031
#include <memory>
3132
#include <stdexcept>

router/src/http/include/mysqlrouter/http_request.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "mysqlrouter/http_common_export.h"
3030

3131
#include <bitset>
32+
#include <cstdint>
3233
#include <ctime>
3334
#include <functional> // std::function
3435
#include <memory>

router/src/router/include/mysqlrouter/cluster_metadata_dynamic_state.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#ifndef CLUSTER_METADATA_DYNAMIC_STATE_INCLUDED
2727
#define CLUSTER_METADATA_DYNAMIC_STATE_INCLUDED
2828

29+
#include <cstdint>
2930
#include <memory>
3031
#include <string>
3132
#include <vector>

0 commit comments

Comments
 (0)