Files
test/intern/cycles/util/algorithm.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
303 B
C
Raw Normal View History

/* 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