/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/cpp14_binary_integer_literals.i
17 строк
302 B
Olly Betts
Add tests for binary integer literal constants
26 июл 2022, 06:28
26 июл 2022, 06:28
c759da2
Код
Авторство
О чём код?
%module cpp14_binary_integer_literals #if 0b100 < 4 # error binary constant in preprocessor expression failed #endif %inline %{ int b1 = 0b1; int b2 = 0b10; long b3 = 0b11l; unsigned long b4 = 0b100ul; unsigned long b5 = 0B101UL; #define b6 0b110 const int b7 = 0b111; %} %constant int b8 = 0b1000;