Blender V4.3
set.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
2 *
3 * SPDX-License-Identifier: Apache-2.0 */
4
5#ifndef __UTIL_SET_H__
6#define __UTIL_SET_H__
7
8#include <set>
9#include <unordered_set>
10
11#if defined(_MSC_VER) && (_MSC_VER >= 1900)
12# include <iterator>
13#endif
14
16
17using std::set;
18using std::unordered_set;
19
21
22#endif /* __UTIL_SET_H__ */
#define CCL_NAMESPACE_END