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

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

#ifndef __UTIL_FOREACH_H__
#define __UTIL_FOREACH_H__

/* Nice foreach() loops for STL data structures. */

#define foreach(x, y) for (x : y)

#endif /* __UTIL_FOREACH_H__ */