18 lines
305 B
C++
18 lines
305 B
C++
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#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__ */
|