/
niceSOFT
/
doxygen
Обзор
Документация
Войти
/
niceSOFT
/
doxygen
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testing/068_ref_varargs.cpp
20 строк
363 B
Matthew White
Add variadic function arguments '...' regression tests
03 авг 2017, 06:38
03 авг 2017, 06:38
fce142b
Код
Авторство
О чём код?
// objective: test \ref command with function variadic arguments '...' // check: 068__ref__varargs_8cpp.xml /** \file * See \ref func(int,...) "the function" for more info. * See the \ref Test "test" class. */ /** A function */ void func(int p); /** Overloaded function taking variadic arguments */ void func(int p, ...); /** A test */ class Test { };