Browse Source

Small refactoring in TCompactSet.

ponasenko-rs 1 year ago
parent
commit
001b6a9e94
1 changed files with 3 additions and 3 deletions
  1. 3 3
      library/cpp/yt/small_containers/compact_set-inl.h

+ 3 - 3
library/cpp/yt/small_containers/compact_set-inl.h

@@ -4,7 +4,7 @@
 #include "compact_set.h"
 #endif
 
-#include <library/cpp/yt/assert//assert.h>
+#include <library/cpp/yt/assert/assert.h>
 
 namespace NYT {
 
@@ -34,7 +34,7 @@ private:
         , Small(false)
     { }
 
-    template <class TOther>
+    template <typename TOther>
     void ConstructFrom(TOther&& rhs)
     {
         YT_ASSERT(Small == rhs.Small);
@@ -46,7 +46,7 @@ private:
         }
     }
 
-    template <class TOther>
+    template <typename TOther>
     const_iterator& AssignFrom(TOther&& rhs)
     {
         if (this == &rhs) {