diff options
author | Vlad Yaroslavlev <[email protected]> | 2022-02-10 16:46:25 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:25 +0300 |
commit | 344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /tools/fix_elf/patch.h | |
parent | 706b83ed7de5a473436620367af31fc0ceecde07 (diff) |
Restoring authorship annotation for Vlad Yaroslavlev <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'tools/fix_elf/patch.h')
-rw-r--r-- | tools/fix_elf/patch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/fix_elf/patch.h b/tools/fix_elf/patch.h index 58cf229910a..c3dcd242249 100644 --- a/tools/fix_elf/patch.h +++ b/tools/fix_elf/patch.h @@ -2,7 +2,7 @@ #include "elf.h" -#include <util/generic/string.h> +#include <util/generic/string.h> #include <util/stream/file.h> #include <util/system/filemap.h> @@ -13,11 +13,11 @@ inline TTo Offset(TFrom from, size_t off) { return reinterpret_cast<TTo>(reinterpret_cast<char*>(from) + off); } -bool IsElf(const TString& path); +bool IsElf(const TString& path); class TElf { public: - TElf(const TString& path) + TElf(const TString& path) : Map(path, TFileMap::oRdWr) { Map.Map(0, Map.Length()); |