/
auroraos
/
mirror_SafeInt
Обзор
Документация
Войти
/
auroraos
/
mirror_SafeInt
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
master
Test/cxx98_probe.cpp
7 строк
369 B
David LeBlanc
Fix for issue #55 (#70)
10 май 2026, 08:14
Не верифицирован
10 май 2026, 08:14
4dd5d19
Код
Авторство
О чём код?
// Minimal c++98 probe used by Test/{Gcc,Clang}Test/CMakeLists.txt to detect // whether the toolchain's C++ standard library headers are still usable // under -std=c++98. As of libstdc++ 13, <cstdint> (and most other // headers) hard-error under c++98, so the c++98 CompileTest targets are // unbuildable on that toolchain. #include <cstdint> int main() { return 0; }