18 lines
303 B
C++
18 lines
303 B
C++
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#pragma once
|
|
|
|
#include <algorithm> // IWYU pragma: export
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
using std::remove;
|
|
using std::sort;
|
|
using std::stable_sort;
|
|
using std::swap;
|
|
using std::upper_bound;
|
|
|
|
CCL_NAMESPACE_END
|