/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/boost/libs/iterator/test/range_distance_compat_test.cpp
22 строки
682 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
// Copyright (C) 2018 Andrey Semashev // // 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/range/distance.hpp> #include <boost/range/iterator_range_core.hpp> #include <boost/iterator/distance.hpp> int main() { // Test that boost::distance from Boost.Range works with boost::distance from Boost.Iterator // (https://github.com/boostorg/iterator/commit/b844c8df530c474ec1856870b9b0de5f487b84d4#commitcomment-30603668) typedef boost::iterator_range<const char*> range_type; range_type range; (void)boost::distance(range); return 0; }