diff options
Diffstat (limited to 'library/cpp/yt/memory/ref_counted.h')
-rw-r--r-- | library/cpp/yt/memory/ref_counted.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yt/memory/ref_counted.h b/library/cpp/yt/memory/ref_counted.h index b683615b83..2443675def 100644 --- a/library/cpp/yt/memory/ref_counted.h +++ b/library/cpp/yt/memory/ref_counted.h @@ -90,13 +90,13 @@ private: //////////////////////////////////////////////////////////////////////////////// template <class T> -const TRefCounter* GetRefCounter(const T* obj); +const TRefCounter* GetRefCounter(const T* obj); template <class T> -void DestroyRefCounted(const T* obj); +void DestroyRefCounted(const T* obj); template <class T> -void DeallocateRefCounted(const T* obj); +void DeallocateRefCounted(const T* obj); //////////////////////////////////////////////////////////////////////////////// |