aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libcxxrt/memory.cc
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:18 +0300
commit475c0a46f28166e83fd263badc7546377cddcabe (patch)
tree39c5a49b8aaad78fe390b6f1f2886bdbda40f3e7 /contrib/libs/cxxsupp/libcxxrt/memory.cc
parenta6e0145a095c7bb3770d6e07aee301de5c73f96e (diff)
downloadydb-475c0a46f28166e83fd263badc7546377cddcabe.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/cxxsupp/libcxxrt/memory.cc')
-rw-r--r--contrib/libs/cxxsupp/libcxxrt/memory.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/cxxsupp/libcxxrt/memory.cc b/contrib/libs/cxxsupp/libcxxrt/memory.cc
index 694c5d5037..9daa043ff2 100644
--- a/contrib/libs/cxxsupp/libcxxrt/memory.cc
+++ b/contrib/libs/cxxsupp/libcxxrt/memory.cc
@@ -59,12 +59,12 @@ namespace std
* Sets a function to be called when there is a failure in new.
*/
__attribute__((weak))
- new_handler set_new_handler(new_handler handler) noexcept
+ new_handler set_new_handler(new_handler handler) noexcept
{
return ATOMIC_SWAP(&new_handl, handler);
}
__attribute__((weak))
- new_handler get_new_handler(void) noexcept
+ new_handler get_new_handler(void) noexcept
{
return ATOMIC_LOAD(&new_handl);
}