aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/misc/concepts.h
diff options
context:
space:
mode:
authorpogorelov <pogorelov@yandex-team.com>2024-12-06 12:28:22 +0300
committerpogorelov <pogorelov@yandex-team.com>2024-12-06 12:44:32 +0300
commit347c99aa0858db7f96def6168af25f36485a02b3 (patch)
tree18d9eefd4d3be707ec58da93b77d0845864deaa2 /library/cpp/yt/misc/concepts.h
parenta38e118c8c78f5d85bdc381bb2f1f39afd76c2ff (diff)
downloadydb-347c99aa0858db7f96def6168af25f36485a02b3.tar.gz
Fix various issues
commit_hash:50f729d3716d8b1f5b852cfc008e228172fb79c4
Diffstat (limited to 'library/cpp/yt/misc/concepts.h')
-rw-r--r--library/cpp/yt/misc/concepts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/misc/concepts.h b/library/cpp/yt/misc/concepts.h
index aecad4fe60..eda0bc163f 100644
--- a/library/cpp/yt/misc/concepts.h
+++ b/library/cpp/yt/misc/concepts.h
@@ -77,7 +77,7 @@ template <class T>
concept CConstRawPtr = CRawPtr<T> && CConst<decltype(*std::declval<T>())>;
template <class T>
-concept CMutRawPtr = CRawPtr<T> && !CConstRawPtr<T>;
+concept CMutableRawPtr = CRawPtr<T> && !CConstRawPtr<T>;
////////////////////////////////////////////////////////////////////////////////