/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/clangsa/StaticOrDeclaredTest.h
18 строк
525 B
Jameson Nash
src: add clang-tidy test for extern/static/export usage
06 июл 2026, 18:37
06 июл 2026, 18:37
a2c06e4
Код
Авторство
О чём код?
// This file is a part of Julia. License is MIT: https://julialang.org/license // Public prototypes for StaticOrDeclaredTest: a function defined in the test // file whose prototype lives here is "declared in a header" and must not be // flagged by the julia-static-or-declared check. void sod_public(void); int sod_public_val(int x); void sod_redundant_hdr(void); __attribute__((visibility("default"))) void sod_fwd_exported(void) {} #ifdef __cplusplus struct sod_HdrType { void method(); }; class sod_Opaque; #endif