/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/restricted/aws/aws-crt-cpp/source/Allocator.cpp
21 строка
570 B
dakovalkov
Update contrib/libs/aws-sdk-cpp to 1.11.37
03 дек 2023, 14:05
03 дек 2023, 14:05
d847a2f
Код
Авторство
О чём код?
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/crt/Allocator.h> namespace Aws { namespace Crt { Allocator *DefaultAllocatorImplementation() noexcept { return aws_default_allocator(); } Allocator *DefaultAllocator() noexcept { return DefaultAllocatorImplementation(); } Allocator *g_allocator = Aws::Crt::DefaultAllocatorImplementation(); Allocator *ApiAllocator() noexcept { return g_allocator; } } // namespace Crt } // namespace Aws