/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/errors/cpp_invalid_template.i
14 строк
238 B
William S Fulton
Add warning for ineffective %template instantiations
29 июн 2024, 19:36
29 июн 2024, 19:36
8c8e27d
Код
Авторство
О чём код?
%module xxx %template(abc) SSS::AAA<int>; namespace UUU { struct JJJ; } %template(xxx) UUU::JJJ<int>; %template(TTT_int) VVV::TTT<int>; // needs to be after template is parsed namespace VVV { template<typename T> struct TTT {}; }