/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
library/cpp/yt/misc/global.h
13 строк
382 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
#pragma once //! Defines a global variable that is initialized on its first access. /*! * In contrast to a usual variable with static storage duration, this one * is not susceptible to initialization order fisco issues. */ #define YT_DEFINE_GLOBAL(type, name, ...) \ inline type& name() \ { \ static type result{__VA_ARGS__}; \ return result; \ }