Blender  V3.3
foreach.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: Apache-2.0
2  * Copyright 2011-2022 Blender Foundation */
3 
4 #ifndef __UTIL_FOREACH_H__
5 #define __UTIL_FOREACH_H__
6 
7 /* Nice foreach() loops for STL data structures. */
8 
9 #define foreach(x, y) for (x : y)
10 
11 #endif /* __UTIL_FOREACH_H__ */