You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by is...@apache.org on 2023/01/24 09:31:10 UTC

[ignite-3] 02/02: IGNITE-18583 Fix warning

This is an automated email from the ASF dual-hosted git repository.

isapego pushed a commit to branch ignite-18583
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit f901e1b75447f9560f1fee58dfd0a556c79252ba
Author: Igor Sapego <is...@apache.org>
AuthorDate: Tue Jan 24 13:21:31 2023 +0400

    IGNITE-18583 Fix warning
---
 modules/platforms/cpp/tests/test-common/test_utils.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/platforms/cpp/tests/test-common/test_utils.h b/modules/platforms/cpp/tests/test-common/test_utils.h
index 84f257e0cf..88610731fb 100644
--- a/modules/platforms/cpp/tests/test-common/test_utils.h
+++ b/modules/platforms/cpp/tests/test-common/test_utils.h
@@ -40,7 +40,7 @@ std::optional<std::string> get_env(const std::string& name);
  *
  * @return @c true if tests run in single node mode.
  */
-static bool single_node_mode() {
+inline bool single_node_mode() {
     return ignite::get_env("IGNITE_CPP_TESTS_USE_SINGLE_NODE").has_value();
 }