summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbabenko <[email protected]>2025-08-11 11:18:09 +0300
committerbabenko <[email protected]>2025-08-11 11:35:25 +0300
commit2b9f56bc3628713372da92fe3d07b97a9f3f8532 (patch)
treec6a9a944ce5eaeeaea497fc4da4515f5c52fbfea
parenta2b6acd806a3a19786a02099f93f2e9893772b1c (diff)
YT-18571: Modernize memory_order
Since C++20, this is an enum class. commit_hash:38c67999c05d3a321ec44c0de05ab7583090ea6d
-rw-r--r--yt/yt/core/logging/log_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/core/logging/log_manager.cpp b/yt/yt/core/logging/log_manager.cpp
index 477ff335172..2e3af02148c 100644
--- a/yt/yt/core/logging/log_manager.cpp
+++ b/yt/yt/core/logging/log_manager.cpp
@@ -497,7 +497,7 @@ public:
void SuppressRequest(TRequestId requestId)
{
- if (RequestSuppressionEnabled_.load(std::memory_order_relaxed)) {
+ if (RequestSuppressionEnabled_.load(std::memory_order::relaxed)) {
SuppressedRequestIdQueue_.Enqueue(requestId);
}
}