diff options
author | leo <[email protected]> | 2022-02-10 16:46:40 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:40 +0300 |
commit | 980edcd3304699edf9d4e4d6a656e585028e2a72 (patch) | |
tree | 139f47f3911484ae9af0eb347b1a88bd6c4bb35f /util/memory/blob.h | |
parent | b036a557f285146e5e35d4213e29a094ab907bcf (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/memory/blob.h')
-rw-r--r-- | util/memory/blob.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/memory/blob.h b/util/memory/blob.h index 20c02a68dfb..84d4ebaa4d1 100644 --- a/util/memory/blob.h +++ b/util/memory/blob.h @@ -7,8 +7,8 @@ class TMemoryMap; class IInputStream; -class TFile; -class TBuffer; +class TFile; +class TBuffer; enum class EMappingMode { /// Just mmap a file allowing lazy page loading at access @@ -289,11 +289,11 @@ public: /// Creates a blob with a single-threaded (non atomic) refcounter. No memory allocation, no content copy. /// @details The input object becomes empty. static TBlob FromBufferSingleThreaded(TBuffer& in); - + /// Creates a blob with a multi-threaded (atomic) refcounter. No memory allocation, no content copy. /// @details The input object becomes empty. static TBlob FromBuffer(TBuffer& in); - + /// Creates a blob from TString with a single-threaded (non atomic) refcounter. static TBlob FromStringSingleThreaded(const TString& s); |