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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-08-19 18:40:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-19 18:40:16 +0400
commit20fdea918de205a009eba19d286148b21c4ea979 (patch)
tree44af0cfe46cb337c29bb10314057c6ffafb12c4d /intern/atomic/atomic_ops.h
parentb8ce663706e5822e2af46bd3b04629dce197489c (diff)
code cleanup: confirm include guards to our convention
Diffstat (limited to 'intern/atomic/atomic_ops.h')
-rw-r--r--intern/atomic/atomic_ops.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/atomic/atomic_ops.h b/intern/atomic/atomic_ops.h
index c064d92d260..21d686a8e80 100644
--- a/intern/atomic/atomic_ops.h
+++ b/intern/atomic/atomic_ops.h
@@ -26,8 +26,8 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef ATOMIC_OPS_H__
-#define ATOMIC_OPS_H__
+#ifndef __ATOMIC_OPS_H__
+#define __ATOMIC_OPS_H__
#include <assert.h>
@@ -304,4 +304,4 @@ atomic_sub_u(unsigned *p, unsigned x)
#endif
}
-#endif /* ATOMIC_OPS_H__ */
+#endif /* __ATOMIC_OPS_H__ */