Welcome to mirror list, hosted at ThFree Co, Russian Federation.

algorithm.h « util « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68c48e1a928331d8413dc10be96a0cd90e01dee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#ifndef __UTIL_ALGORITHM_H__
#define __UTIL_ALGORITHM_H__

#include <algorithm>

CCL_NAMESPACE_BEGIN

using std::remove;
using std::sort;
using std::stable_sort;
using std::swap;

CCL_NAMESPACE_END

#endif /* __UTIL_ALGORITHM_H__ */