Changeset View
Changeset View
Standalone View
Standalone View
libcxx/include/__algorithm/ranges_move.h
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#ifndef _LIBCPP___ALGORITHM_RANGES_MOVE_H | #ifndef _LIBCPP___ALGORITHM_RANGES_MOVE_H | ||||
#define _LIBCPP___ALGORITHM_RANGES_MOVE_H | #define _LIBCPP___ALGORITHM_RANGES_MOVE_H | ||||
#include <__algorithm/in_out_result.h> | #include <__algorithm/in_out_result.h> | ||||
#include <__algorithm/iterator_operations.h> | #include <__algorithm/iterator_operations.h> | ||||
#include <__algorithm/move.h> | #include <__algorithm/move.h> | ||||
#include <__config> | #include <__config> | ||||
#include <__iterator/concepts.h> | #include <__iterator/concepts.h> | ||||
#include <__iterator/iter_move.h> | |||||
#include <__ranges/access.h> | #include <__ranges/access.h> | ||||
#include <__ranges/concepts.h> | #include <__ranges/concepts.h> | ||||
#include <__ranges/dangling.h> | #include <__ranges/dangling.h> | ||||
#include <__utility/move.h> | #include <__utility/move.h> | ||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||||
# pragma GCC system_header | # pragma GCC system_header | ||||
#endif | #endif | ||||
▲ Show 20 Lines • Show All 47 Lines • Show Last 20 Lines |