/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/boost/libs/integer/test/integer_fwd_include_test.cpp
22 строки
1 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// Copyright John Maddock 2009. // Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include <boost/integer_fwd.hpp> // must be the only #include! // just declare some functions that use the incomplete types in the header: void f1(const boost::integer_traits<char>*); void f2(const boost::int_fast_t<char>*); void f3(const boost::int_t<12>*); void f4(const boost::uint_t<31>*); void f5(const boost::int_max_value_t<100>*); void f6(const boost::int_min_value_t<-100>*); void f7(const boost::uint_value_t<100>*); void f8(const boost::high_bit_mask_t<10>*); void f9(const boost::low_bits_mask_t<10>*); void f10(boost::static_log2_argument_type, boost::static_log2_result_type, boost::static_log2<10>*); void f11(boost::static_min_max_signed_type, boost::static_min_max_unsigned_type); void f12(boost::static_signed_min<1, 2>*, boost::static_signed_max<1,2>*); void f13(boost::static_unsigned_min<1,2>*, boost::static_unsigned_min<1,2>*);