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

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

#ifndef __UTIL_UNIQUE_PTR_H__
#define __UTIL_UNIQUE_PTR_H__

#include <memory>

CCL_NAMESPACE_BEGIN

using std::make_unique;
using std::unique_ptr;

CCL_NAMESPACE_END

#endif /* __UTIL_UNIQUE_PTR_H__ */