mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
21 lines
552 B
C++
21 lines
552 B
C++
|
#ifndef SPROUT_COMPOST_RANGES_ADAPTED_DROPPED_END_HPP
|
||
|
#define SPROUT_COMPOST_RANGES_ADAPTED_DROPPED_END_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/range/adaptor/adapted_dropped_end.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace compost {
|
||
|
namespace ranges {
|
||
|
//
|
||
|
// adapted_dropped_end
|
||
|
//
|
||
|
using sprout::adaptors::adapted_dropped_end;
|
||
|
} // namespace ranges
|
||
|
|
||
|
using sprout::compost::ranges::adapted_dropped_end;
|
||
|
} // namespace compost
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_COMPOST_RANGES_ADAPTED_DROPPED_END_HPP
|