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

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

#ifndef __UTIL_DEQUE_H__
#define __UTIL_DEQUE_H__

#include <deque>

CCL_NAMESPACE_BEGIN

using std::deque;

CCL_NAMESPACE_END

#endif /* __UTIL_DEQUE_H__ */