diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-03-03 13:53:18 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-03-03 13:53:18 +0300 |
commit | 75b363ad9be455d895aee7f72f45be2d950d3518 (patch) | |
tree | ceef86b4a2c864b1a962dab41a8cd8b3f3ab0bc3 /util/system/filemap.h | |
parent | 473e96c44443a8567db5ba7ee48110663fcb21c7 (diff) | |
download | ydb-75b363ad9be455d895aee7f72f45be2d950d3518.tar.gz |
Support std::filesystem::path in Arcadia streams
ref:11bbdd83544b9579747dd12d51395840bda86faf
Diffstat (limited to 'util/system/filemap.h')
-rw-r--r-- | util/system/filemap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/system/filemap.h b/util/system/filemap.h index edae96228b..f66b70c96c 100644 --- a/util/system/filemap.h +++ b/util/system/filemap.h @@ -296,7 +296,7 @@ public: TMappedAllocation(TMappedAllocation&& other) noexcept { this->swap(other); } - TMappedAllocation& operator = (TMappedAllocation&& other)noexcept { + TMappedAllocation& operator=(TMappedAllocation&& other) noexcept { this->swap(other); return *this; } |