/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Lib/c/std_except.i
20 строк
646 B
Vadim Zeitlin
Remove commented out code from c/std_except.i
04 янв 2022, 03:10
04 янв 2022, 03:10
78e09d5
Код
Авторство
О чём код?
/* ----------------------------------------------------------------------------- * See the LICENSE file for information on copyright, usage and redistribution * of SWIG, and the README file for authors - http://www.swig.org/release.html. * * std_except.i * * Typemaps used by the STL wrappers that throw exceptions. * These typemaps are used when methods are declared with an STL exception specification, such as * size_t at() const throw (std::out_of_range); * ----------------------------------------------------------------------------- */ %{ #include <stdexcept> %} namespace std { %ignore exception; struct exception {}; }