Files
test2/intern/cycles/util/unique_ptr.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
305 B
C
Raw Normal View History

/* 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__ */