diff options
author | sandello <[email protected]> | 2022-02-10 16:49:52 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:52 +0300 |
commit | 0cdbcf332f1f329f0a3d6759462ad71e7867ac08 (patch) | |
tree | 6866207854e212f8179cb77bd1e2435e49743f66 /library/cpp/malloc/api/malloc.cpp | |
parent | 3f5911a056d3dbc4bfd724740244a3a9c11575ef (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/malloc/api/malloc.cpp')
-rw-r--r-- | library/cpp/malloc/api/malloc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/malloc/api/malloc.cpp b/library/cpp/malloc/api/malloc.cpp index eed1c58a383..8bba9447222 100644 --- a/library/cpp/malloc/api/malloc.cpp +++ b/library/cpp/malloc/api/malloc.cpp @@ -9,9 +9,9 @@ namespace { } const char* GetEmptyParam(const char*) { - return nullptr; - } - + return nullptr; + } + bool CheckEmptyParam(const char*, bool defaultValue) { return defaultValue; } @@ -23,7 +23,7 @@ namespace NMalloc { TMallocInfo::TMallocInfo() : Name() , SetParam(SetEmptyParam) - , GetParam(GetEmptyParam) + , GetParam(GetEmptyParam) , CheckParam(CheckEmptyParam) { } |