Browse Source

Restoring authorship annotation for <matveieff@yandex-team.ru>. Commit 2 of 2.

matveieff 3 years ago
parent
commit
ae443bdaea
1 changed files with 12 additions and 12 deletions
  1. 12 12
      library/cpp/enumbitset/enumbitset.h

+ 12 - 12
library/cpp/enumbitset/enumbitset.h

@@ -497,19 +497,19 @@ public:
     {
     }
 
-    explicit TGeneratedEnumBitSet(const TParent& p) 
+    explicit TGeneratedEnumBitSet(const TParent& p)
         : TParent(p)
     {
     }
- 
-    explicit TGeneratedEnumBitSet(TEnum c1) 
-        : TParent(c1) 
-    { 
-    } 
- 
-    template <class... R> 
-    TGeneratedEnumBitSet(TEnum c1, TEnum c2, R... r) 
-        : TParent(c1, c2, r...) 
-    { 
-    } 
+
+    explicit TGeneratedEnumBitSet(TEnum c1)
+        : TParent(c1)
+    {
+    }
+
+    template <class... R>
+    TGeneratedEnumBitSet(TEnum c1, TEnum c2, R... r)
+        : TParent(c1, c2, r...)
+    {
+    }
 };