Skip to content

Commit

Permalink
dxGeed Graal SDK 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatolyKalin committed Apr 1, 2024
1 parent 4827f4c commit aad1f79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion include/dxfeed_graal_cpp_api/internal/Common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ template <std::size_t Bits> 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<std::uint64_t>(0xe9846af) << 32) + 0x9b1a615d;

x ^= x >> 32;
x *= m;
Expand Down

0 comments on commit aad1f79

Please sign in to comment.