Browse Source

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

shibanov 3 years ago
parent
commit
876fccb9bb
2 changed files with 8 additions and 8 deletions
  1. 4 4
      util/memory/blob.h
  2. 4 4
      util/string/util.h

+ 4 - 4
util/memory/blob.h

@@ -19,8 +19,8 @@ enum class EMappingMode {
     Locked
 };
 
-/// @addtogroup BLOBs 
-/// @{ 
+/// @addtogroup BLOBs
+/// @{
 class TBlob {
 public:
     class TBase {
@@ -148,7 +148,7 @@ public:
     /*
      * Some stl-like methods
      */
- 
+
     /// Returns a const reference to the data array.
     /// result type is const ui8* which is not consistent with Data method above
     /// but it's consistent with operator[], Begin and End methods below
@@ -323,4 +323,4 @@ private:
     TStorage S_;
 };
 
-/// @} 
+/// @}

+ 4 - 4
util/string/util.h

@@ -10,8 +10,8 @@
 #include <util/generic/string.h>
 #include <util/generic/strbuf.h>
 
-/// @addtogroup Strings_Miscellaneous 
-/// @{ 
+/// @addtogroup Strings_Miscellaneous
+/// @{
 int a2i(const TString& s);
 
 /// Removes the last character if it is equal to c.
@@ -43,8 +43,8 @@ inline void addIfAbsent(TString& s, char lastCh1, char lastCh2) {
     }
 }
 
-/// @} 
- 
+/// @}
+
 /*
  * ------------------------------------------------------------------
  *