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