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 <[email protected]> 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(); }
