Remove separate impl.h headers, shuffle around some code and add more includes so that individual header files compile without errors. Pull Request: https://projects.blender.org/blender/blender/pulls/132361
18 lines
279 B
C++
18 lines
279 B
C++
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#pragma once
|
|
|
|
#include <algorithm>
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
using std::remove;
|
|
using std::sort;
|
|
using std::stable_sort;
|
|
using std::swap;
|
|
using std::upper_bound;
|
|
|
|
CCL_NAMESPACE_END
|