/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/jsitooling/react/runtime/JSRuntimeFactoryCAPI.cpp
15 строк
422 B
Christoph Purrer
Apply clang-tidy setting: cxxreact (#52730)
23 июл 2025, 19:31
23 июл 2025, 19:31
39ded5e
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "JSRuntimeFactoryCAPI.h" #include "JSRuntimeFactory.h" void js_runtime_factory_destroy(JSRuntimeFactoryRef factory) { if (factory != nullptr) { delete static_cast<facebook::react::JSRuntimeFactory*>(factory); } }