Files
workinf_Blender_Wasm/blender-5.2.0/intern/cycles/util/algorithm.h
2026-08-12 04:47:48 -04:00

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