Skip to content

Commit 62677c9

Browse files
committed
Adjust build scripts
1 parent f6962f7 commit 62677c9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cmake/ThirdPartyDependencies.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,3 +290,7 @@ declare_system_library(Microsoft.GSL::GSL)
290290
declare_system_library(spdlog::spdlog)
291291
declare_system_library(asio)
292292
declare_system_library(taocpp::json)
293+
declare_system_library(snappy)
294+
295+
declare_system_library(opentelemetry_exporter_otlp_http)
296+
declare_system_library(opentelemetry_exporter_otlp_http_metric)

core/transactions/transactions_cleanup.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ parse_mutation_cas(const std::string& cas) -> std::uint64_t
7777
if (cas.empty()) {
7878
return 0;
7979
}
80-
return core::utils::byte_swap(static_cast<std::uint64_t>(std::stoull(cas, nullptr, 16))) /
81-
1000000;
80+
return core::utils::byte_swap(std::stoull(cas, nullptr, 16)) / 1000000;
8281
}
8382

8483
// TODO(CXXCBC-549)

0 commit comments

Comments
 (0)