Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
|
00001 #ifndef H_UTILS_MACROS_FOREACH 00002 #define H_UTILS_MACROS_FOREACH 00003 00022 #define FOREACH(it, container) for( \ 00023 __typeof(container.begin()) it = container.begin(); \ 00024 it != container.end(); ++it) 00025 00026 #endif