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>2012-02-23 14:41:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 14:41:31 +0400
commitb8e019d8396ed102323df234df8b1cc6b35712a1 (patch)
tree64f4fdb413336113b8c92198097831941c6fc171 /source/gameengine/Ketsji/KX_ConstraintWrapper.h
parent3dd449ae4fbb2eb6f9eb63e9f9de61def58abe16 (diff)
use __ prefix on header guards to avoid mixing up defines with api functions / classes.
Diffstat (limited to 'source/gameengine/Ketsji/KX_ConstraintWrapper.h')
-rw-r--r--source/gameengine/Ketsji/KX_ConstraintWrapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Ketsji/KX_ConstraintWrapper.h b/source/gameengine/Ketsji/KX_ConstraintWrapper.h
index 980221bd4b3..bd27bc5b333 100644
--- a/source/gameengine/Ketsji/KX_ConstraintWrapper.h
+++ b/source/gameengine/Ketsji/KX_ConstraintWrapper.h
@@ -29,8 +29,8 @@
* \ingroup ketsji
*/
-#ifndef KX_CONSTRAINT_WRAPPER
-#define KX_CONSTRAINT_WRAPPER
+#ifndef __KX_CONSTRAINTWRAPPER_H__
+#define __KX_CONSTRAINTWRAPPER_H__
#include "Value.h"
#include "PHY_DynamicTypes.h"
@@ -57,5 +57,5 @@ private:
PHY_IPhysicsEnvironment* m_physenv;
};
-#endif //KX_CONSTRAINT_WRAPPER
+#endif //__KX_CONSTRAINTWRAPPER_H__