aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordesertfury <desertfury@yandex-team.ru>2022-02-10 16:50:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:15 +0300
commitc0fb261e6889e12b418ebcdfdb3c990a4b39fd75 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library
parentba92f2f3d8a0cfa549b668980b868cbb6ff080ce (diff)
downloadydb-c0fb261e6889e12b418ebcdfdb3c990a4b39fd75.tar.gz
Restoring authorship annotation for <desertfury@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library')
-rw-r--r--library/cpp/cache/thread_safe_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/cache/thread_safe_cache.h b/library/cpp/cache/thread_safe_cache.h
index e071605259..71e1442717 100644
--- a/library/cpp/cache/thread_safe_cache.h
+++ b/library/cpp/cache/thread_safe_cache.h
@@ -135,7 +135,7 @@ namespace NPrivate {
}
private:
- using TInternalCache = TCache<Key, TPtr, List<Key, TPtr>, TNoopDelete>;
+ using TInternalCache = TCache<Key, TPtr, List<Key, TPtr>, TNoopDelete>;
template <class TCallbacks>
class TThreadSafeCacheSingleton {
@@ -165,7 +165,7 @@ namespace NPrivate {
private:
TRWMutex Mutex;
const ICallbacks& Callbacks;
- mutable TInternalCache Cache;
+ mutable TInternalCache Cache;
};
struct TLWHelper {