From aad1f7951a668ac3e556c54b6f9981db405d8573 Mon Sep 17 00:00:00 2001 From: Anatoly Kalin Date: Mon, 1 Apr 2024 14:33:36 +0300 Subject: [PATCH] dxGeed Graal SDK 1.1.10 --- CMakeLists.txt | 2 +- include/dxfeed_graal_cpp_api/internal/Common.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f57537b..bf1c2d45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ project(dxFeedGraalCxxApi) set(DXFCXX_VERSION "v1.3.5" CACHE STRING "The dxFeed Graal CXX API package version") -set(DXFEED_GRAAL_NATIVE_SDK_VERSION "1.1.9" CACHE STRING "") +set(DXFEED_GRAAL_NATIVE_SDK_VERSION "1.1.10" CACHE STRING "") set(FMTLIB_VERSION "10.2.1") set(BOOST_VERSION "1.84.0") set(UTFCPP_VERSION "3.2.3") diff --git a/include/dxfeed_graal_cpp_api/internal/Common.hpp b/include/dxfeed_graal_cpp_api/internal/Common.hpp index 0889e5e1..3f9cb651 100644 --- a/include/dxfeed_graal_cpp_api/internal/Common.hpp +++ b/include/dxfeed_graal_cpp_api/internal/Common.hpp @@ -634,7 +634,7 @@ template struct hashMixImpl; template <> struct hashMixImpl<64> { constexpr static std::uint64_t fn(std::uint64_t x) noexcept { - std::uint64_t const m = (std::uint64_t(0xe9846af) << 32) + 0x9b1a615d; + std::uint64_t const m = (static_cast(0xe9846af) << 32) + 0x9b1a615d; x ^= x >> 32; x *= m;