Add Chromium-only Blender WebEngine parity work
This commit is contained in:
17
blender-5.2.0/intern/cycles/util/algorithm.h
Normal file
17
blender-5.2.0/intern/cycles/util/algorithm.h
Normal file
@@ -0,0 +1,17 @@
|
||||
/* 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
|
||||
Reference in New Issue
Block a user