From b8e019d8396ed102323df234df8b1cc6b35712a1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 23 Feb 2012 10:41:31 +0000 Subject: use __ prefix on header guards to avoid mixing up defines with api functions / classes. --- source/gameengine/Physics/Bullet/CcdGraphicController.h | 4 ++-- source/gameengine/Physics/Bullet/CcdPhysicsController.h | 6 +++--- source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'source/gameengine/Physics/Bullet') diff --git a/source/gameengine/Physics/Bullet/CcdGraphicController.h b/source/gameengine/Physics/Bullet/CcdGraphicController.h index d0cb899cb74..07878b7162e 100644 --- a/source/gameengine/Physics/Bullet/CcdGraphicController.h +++ b/source/gameengine/Physics/Bullet/CcdGraphicController.h @@ -18,8 +18,8 @@ subject to the following restrictions: */ -#ifndef BULLET2_GRAPHICCONTROLLER_H -#define BULLET2_GRAPHICCONTROLLER_H +#ifndef __CCDGRAPHICCONTROLLER_H__ +#define __CCDGRAPHICCONTROLLER_H__ #include "PHY_IGraphicController.h" diff --git a/source/gameengine/Physics/Bullet/CcdPhysicsController.h b/source/gameengine/Physics/Bullet/CcdPhysicsController.h index 82acd64161f..33b30758ff0 100644 --- a/source/gameengine/Physics/Bullet/CcdPhysicsController.h +++ b/source/gameengine/Physics/Bullet/CcdPhysicsController.h @@ -18,8 +18,8 @@ subject to the following restrictions: */ -#ifndef BULLET2_PHYSICSCONTROLLER_H -#define BULLET2_PHYSICSCONTROLLER_H +#ifndef __CCDPHYSICSCONTROLLER_H__ +#define __CCDPHYSICSCONTROLLER_H__ #include #include @@ -656,4 +656,4 @@ public: }; -#endif //BULLET2_PHYSICSCONTROLLER_H +#endif //__CCDPHYSICSCONTROLLER_H__ diff --git a/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h b/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h index 1eed0665564..1315bc732a2 100644 --- a/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h +++ b/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h @@ -18,8 +18,8 @@ subject to the following restrictions: * See also \ref bulletdoc */ -#ifndef CCDPHYSICSENVIRONMENT -#define CCDPHYSICSENVIRONMENT +#ifndef __CCDPHYSICSENVIRONMENT_H__ +#define __CCDPHYSICSENVIRONMENT_H__ #include "PHY_IPhysicsEnvironment.h" #include @@ -294,4 +294,4 @@ public: #endif }; -#endif //CCDPHYSICSENVIRONMENT +#endif //__CCDPHYSICSENVIRONMENT_H__ -- cgit v1.2.3