We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d49c1 commit 014f917Copy full SHA for 014f917
opal/class/opal_list.h
@@ -12,6 +12,8 @@
12
* Copyright (c) 2007 Voltaire All rights reserved.
13
* Copyright (c) 2013 Los Alamos National Security, LLC. All rights
14
* reserved.
15
+ * Copyright (c) 2016 Research Organization for Information Science
16
+ * and Technology (RIST). All rights reserved.
17
* $COPYRIGHT$
18
*
19
* Additional copyrights may follow
@@ -204,8 +206,8 @@ typedef struct opal_list_t opal_list_t;
204
206
* Example Usage:
205
207
208
* class_foo_t *foo;
- * opal_list_foreach(foo, list, class_foo_t) {
- * do something;
209
+ * OPAL_LIST_FOREACH(foo, list, class_foo_t) {
210
+ * do something(foo);
211
* }
212
*/
213
#define OPAL_LIST_FOREACH(item, list, type) \
0 commit comments