Skip to content

Commit 95e32e1

Browse files
authored
IGNITE-27223 C++ Client: Add missing header (#7266)
1 parent 2ca5a82 commit 95e32e1

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

modules/platforms/cpp/ignite/client/detail/cluster_connection.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "ignite/network/ssl/secure_data_filter.h"
2626
#include "ignite/protocol/writer.h"
2727

28+
#include <algorithm>
2829
#include <iterator>
2930

3031
namespace ignite::detail {

modules/platforms/cpp/ignite/client/ignite_client_configuration.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,7 @@ class ignite_client_configuration {
204204
* This configuration only applies to each of those requests separately but not to its combination therefore real
205205
* execution times of compute jobs could be greater than operation timeout.
206206
*
207-
* @return Operation timeout
208-
* .
207+
* @return Operation timeout.
209208
*/
210209
[[nodiscard]] std::chrono::milliseconds get_operation_timeout() const { return m_operation_timeout; }
211210

modules/platforms/cpp/tests/fake_server/tcp_client_channel.cpp

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

1818
#include "tcp_client_channel.h"
19+
20+
#include <algorithm>
1921
#include <netinet/in.h>
2022
#include <sys/socket.h>
2123
#include <unistd.h>

modules/platforms/cpp/tests/test-common/ignite_runner.cpp

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

2424
#include "ignite/common/detail/config.h"
2525

26+
#include <algorithm>
2627
#include <filesystem>
2728
#include <sstream>
2829
#include <stdexcept>

0 commit comments

Comments
 (0)