From 16c64877965d6fb38979efeeef3ba2fd27a455eb Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Thu, 18 Apr 2013 22:54:36 +0200 Subject: [PATCH] Change #ifndef names in headers to avoid name collision with others libraries --- src/body/Body.h | 4 ++-- src/body/CollisionBody.h | 4 ++-- src/body/RigidBody.h | 4 ++-- src/collision/BroadPhasePair.h | 4 ++-- src/collision/CollisionDetection.h | 4 ++-- src/collision/ContactInfo.h | 4 ++-- src/collision/broadphase/BroadPhaseAlgorithm.h | 4 ++-- src/collision/broadphase/NoBroadPhaseAlgorithm.h | 4 ++-- src/collision/broadphase/PairManager.h | 4 ++-- src/collision/broadphase/SweepAndPruneAlgorithm.h | 4 ++-- src/collision/narrowphase/EPA/EPAAlgorithm.h | 4 ++-- src/collision/narrowphase/EPA/EdgeEPA.h | 4 ++-- src/collision/narrowphase/EPA/TriangleEPA.h | 4 ++-- src/collision/narrowphase/EPA/TrianglesStore.h | 4 ++-- src/collision/narrowphase/GJK/GJKAlgorithm.h | 4 ++-- src/collision/narrowphase/GJK/Simplex.h | 4 ++-- src/collision/narrowphase/NarrowPhaseAlgorithm.h | 4 ++-- src/collision/narrowphase/SphereVsSphereAlgorithm.h | 4 ++-- src/collision/shapes/AABB.h | 4 ++-- src/collision/shapes/BoxShape.h | 4 ++-- src/collision/shapes/CollisionShape.h | 4 ++-- src/collision/shapes/ConeShape.h | 4 ++-- src/collision/shapes/CylinderShape.h | 4 ++-- src/collision/shapes/SphereShape.h | 4 ++-- src/configuration.h | 4 ++-- src/constraint/Constraint.h | 4 ++-- src/constraint/ContactPoint.h | 4 ++-- src/decimal.h | 4 ++-- src/engine/CollisionWorld.h | 4 ++-- src/engine/ContactManifold.h | 4 ++-- src/engine/ContactSolver.h | 4 ++-- src/engine/DynamicsWorld.h | 4 ++-- src/engine/OverlappingPair.h | 4 ++-- src/engine/Profiler.h | 4 ++-- src/engine/Timer.h | 4 ++-- src/mathematics/Matrix3x3.h | 4 ++-- src/mathematics/Quaternion.h | 4 ++-- src/mathematics/Transform.h | 4 ++-- src/mathematics/Vector3.h | 4 ++-- src/mathematics/mathematics.h | 4 ++-- src/mathematics/mathematics_functions.h | 4 ++-- src/memory/MemoryAllocator.h | 4 ++-- 42 files changed, 84 insertions(+), 84 deletions(-) diff --git a/src/body/Body.h b/src/body/Body.h index 6aa9a2eb..d131eec8 100644 --- a/src/body/Body.h +++ b/src/body/Body.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef BODY_H -#define BODY_H +#ifndef REACTPHYSICS3D_BODY_H +#define REACTPHYSICS3D_BODY_H // Libraries #include diff --git a/src/body/CollisionBody.h b/src/body/CollisionBody.h index 57659766..c119925e 100644 --- a/src/body/CollisionBody.h +++ b/src/body/CollisionBody.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef COLLISION_BODY_H -#define COLLISION_BODY_H +#ifndef REACTPHYSICS3D_COLLISION_BODY_H +#define REACTPHYSICS3D_COLLISION_BODY_H // Libraries #include diff --git a/src/body/RigidBody.h b/src/body/RigidBody.h index 0d8652e5..0128bb42 100644 --- a/src/body/RigidBody.h +++ b/src/body/RigidBody.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef RIGID_BODY_H -#define RIGID_BODY_H +#ifndef REACTPHYSICS3D_RIGID_BODY_H +#define REACTPHYSICS3D_RIGID_BODY_H // Libraries #include diff --git a/src/collision/BroadPhasePair.h b/src/collision/BroadPhasePair.h index c3878eda..f0a2f9ca 100644 --- a/src/collision/BroadPhasePair.h +++ b/src/collision/BroadPhasePair.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef BROAD_PHASE_PAIR_H -#define BROAD_PHASE_PAIR_H +#ifndef REACTPHYSICS3D_BROAD_PHASE_PAIR_H +#define REACTPHYSICS3D_BROAD_PHASE_PAIR_H // Libraries #include "../body/CollisionBody.h" diff --git a/src/collision/CollisionDetection.h b/src/collision/CollisionDetection.h index 71dda4bf..897103f9 100644 --- a/src/collision/CollisionDetection.h +++ b/src/collision/CollisionDetection.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef COLLISION_DETECTION_H -#define COLLISION_DETECTION_H +#ifndef REACTPHYSICS3D_COLLISION_DETECTION_H +#define REACTPHYSICS3D_COLLISION_DETECTION_H // Libraries #include "../body/CollisionBody.h" diff --git a/src/collision/ContactInfo.h b/src/collision/ContactInfo.h index c68479d9..a9d8245a 100644 --- a/src/collision/ContactInfo.h +++ b/src/collision/ContactInfo.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONTACT_INFO_H -#define CONTACT_INFO_H +#ifndef REACTPHYSICS3D_CONTACT_INFO_H +#define REACTPHYSICS3D_CONTACT_INFO_H // Libraries #include "../collision/shapes/BoxShape.h" diff --git a/src/collision/broadphase/BroadPhaseAlgorithm.h b/src/collision/broadphase/BroadPhaseAlgorithm.h index dfc78c75..79536b05 100644 --- a/src/collision/broadphase/BroadPhaseAlgorithm.h +++ b/src/collision/broadphase/BroadPhaseAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef BROAD_PHASE_ALGORITHM_H -#define BROAD_PHASE_ALGORITHM_H +#ifndef REACTPHYSICS3D_BROAD_PHASE_ALGORITHM_H +#define REACTPHYSICS3D_BROAD_PHASE_ALGORITHM_H // Libraries #include diff --git a/src/collision/broadphase/NoBroadPhaseAlgorithm.h b/src/collision/broadphase/NoBroadPhaseAlgorithm.h index 12a89d85..9c4ea7ca 100644 --- a/src/collision/broadphase/NoBroadPhaseAlgorithm.h +++ b/src/collision/broadphase/NoBroadPhaseAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef NO_BROAD_PHASE_ALGORITHM_H -#define NO_BROAD_PHASE_ALGORITHM_H +#ifndef REACTPHYSICS3D_NO_BROAD_PHASE_ALGORITHM_H +#define REACTPHYSICS3D_NO_BROAD_PHASE_ALGORITHM_H // Libraries #include "BroadPhaseAlgorithm.h" diff --git a/src/collision/broadphase/PairManager.h b/src/collision/broadphase/PairManager.h index 130b1dc6..860ab19a 100644 --- a/src/collision/broadphase/PairManager.h +++ b/src/collision/broadphase/PairManager.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef PAIR_MANAGER_H -#define PAIR_MANAGER_H +#ifndef REACTPHYSICS3D_PAIR_MANAGER_H +#define REACTPHYSICS3D_PAIR_MANAGER_H // Libraries #include "../../body/CollisionBody.h" diff --git a/src/collision/broadphase/SweepAndPruneAlgorithm.h b/src/collision/broadphase/SweepAndPruneAlgorithm.h index e3c9c537..25051509 100644 --- a/src/collision/broadphase/SweepAndPruneAlgorithm.h +++ b/src/collision/broadphase/SweepAndPruneAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef SWEEP_AND_PRUNE_ALGORITHM_H -#define SWEEP_AND_PRUNE_ALGORITHM_H +#ifndef REACTPHYSICS3D_SWEEP_AND_PRUNE_ALGORITHM_H +#define REACTPHYSICS3D_SWEEP_AND_PRUNE_ALGORITHM_H // Libraries #include "BroadPhaseAlgorithm.h" diff --git a/src/collision/narrowphase/EPA/EPAAlgorithm.h b/src/collision/narrowphase/EPA/EPAAlgorithm.h index c9edc3b9..5b11a2bf 100644 --- a/src/collision/narrowphase/EPA/EPAAlgorithm.h +++ b/src/collision/narrowphase/EPA/EPAAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef EPA_ALGORITHM_H -#define EPA_ALGORITHM_H +#ifndef REACTPHYSICS3D_EPA_ALGORITHM_H +#define REACTPHYSICS3D_EPA_ALGORITHM_H // Libraries #include "../GJK/Simplex.h" diff --git a/src/collision/narrowphase/EPA/EdgeEPA.h b/src/collision/narrowphase/EPA/EdgeEPA.h index c3c7ec01..ef6e9873 100644 --- a/src/collision/narrowphase/EPA/EdgeEPA.h +++ b/src/collision/narrowphase/EPA/EdgeEPA.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef EDGE_EPA_H -#define EDGE_EPA_H +#ifndef REACTPHYSICS3D_EDGE_EPA_H +#define REACTPHYSICS3D_EDGE_EPA_H // Libraries diff --git a/src/collision/narrowphase/EPA/TriangleEPA.h b/src/collision/narrowphase/EPA/TriangleEPA.h index 1d4a195c..4e83c2d6 100644 --- a/src/collision/narrowphase/EPA/TriangleEPA.h +++ b/src/collision/narrowphase/EPA/TriangleEPA.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef TRIANGLE_EPA_H -#define TRIANGLE_EPA_H +#ifndef REACTPHYSICS3D_TRIANGLE_EPA_H +#define REACTPHYSICS3D_TRIANGLE_EPA_H // Libraries #include "../../../mathematics/mathematics.h" diff --git a/src/collision/narrowphase/EPA/TrianglesStore.h b/src/collision/narrowphase/EPA/TrianglesStore.h index f0ab8aab..bd273b94 100644 --- a/src/collision/narrowphase/EPA/TrianglesStore.h +++ b/src/collision/narrowphase/EPA/TrianglesStore.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef TRIANGLES_STORE_H -#define TRIANGLES_STORE_H +#ifndef REACTPHYSICS3D_TRIANGLES_STORE_H +#define REACTPHYSICS3D_TRIANGLES_STORE_H #include "TriangleEPA.h" diff --git a/src/collision/narrowphase/GJK/GJKAlgorithm.h b/src/collision/narrowphase/GJK/GJKAlgorithm.h index fc4af52e..5e387b68 100644 --- a/src/collision/narrowphase/GJK/GJKAlgorithm.h +++ b/src/collision/narrowphase/GJK/GJKAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef GJK_ALGORITHM_H -#define GJK_ALGORITHM_H +#ifndef REACTPHYSICS3D_GJK_ALGORITHM_H +#define REACTPHYSICS3D_GJK_ALGORITHM_H // Libraries #include "../NarrowPhaseAlgorithm.h" diff --git a/src/collision/narrowphase/GJK/Simplex.h b/src/collision/narrowphase/GJK/Simplex.h index a8db761a..ab1a56c9 100644 --- a/src/collision/narrowphase/GJK/Simplex.h +++ b/src/collision/narrowphase/GJK/Simplex.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef SIMPLEX_H -#define SIMPLEX_H +#ifndef REACTPHYSICS3D_SIMPLEX_H +#define REACTPHYSICS3D_SIMPLEX_H // Libraries #include "../../../mathematics/mathematics.h" diff --git a/src/collision/narrowphase/NarrowPhaseAlgorithm.h b/src/collision/narrowphase/NarrowPhaseAlgorithm.h index d68f3f28..998583a3 100644 --- a/src/collision/narrowphase/NarrowPhaseAlgorithm.h +++ b/src/collision/narrowphase/NarrowPhaseAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef NARROW_PHASE_ALGORITHM_H -#define NARROW_PHASE_ALGORITHM_H +#ifndef REACTPHYSICS3D_NARROW_PHASE_ALGORITHM_H +#define REACTPHYSICS3D_NARROW_PHASE_ALGORITHM_H // Libraries #include "../../body/Body.h" diff --git a/src/collision/narrowphase/SphereVsSphereAlgorithm.h b/src/collision/narrowphase/SphereVsSphereAlgorithm.h index 1c50fb1f..e9320619 100644 --- a/src/collision/narrowphase/SphereVsSphereAlgorithm.h +++ b/src/collision/narrowphase/SphereVsSphereAlgorithm.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef SPHERE_VS_SPHERE_ALGORITHM_H -#define SPHERE_VS_SPHERE_ALGORITHM_H +#ifndef REACTPHYSICS3D_SPHERE_VS_SPHERE_ALGORITHM_H +#define REACTPHYSICS3D_SPHERE_VS_SPHERE_ALGORITHM_H // Libraries #include "../../body/Body.h" diff --git a/src/collision/shapes/AABB.h b/src/collision/shapes/AABB.h index 037fa2d4..e92e43e1 100644 --- a/src/collision/shapes/AABB.h +++ b/src/collision/shapes/AABB.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef AABB_H -#define AABB_H +#ifndef REACTPHYSICS3D_AABB_H +#define REACTPHYSICS3D_AABB_H // Libraries #include "../../mathematics/mathematics.h" diff --git a/src/collision/shapes/BoxShape.h b/src/collision/shapes/BoxShape.h index 3f6134ba..82b3aadb 100644 --- a/src/collision/shapes/BoxShape.h +++ b/src/collision/shapes/BoxShape.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef BOX_SHAPE_H -#define BOX_SHAPE_H +#ifndef REACTPHYSICS3D_BOX_SHAPE_H +#define REACTPHYSICS3D_BOX_SHAPE_H // Libraries #include diff --git a/src/collision/shapes/CollisionShape.h b/src/collision/shapes/CollisionShape.h index dba56ad7..535332c6 100644 --- a/src/collision/shapes/CollisionShape.h +++ b/src/collision/shapes/CollisionShape.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef COLLISION_SHAPE_H -#define COLLISION_SHAPE_H +#ifndef REACTPHYSICS3D_COLLISION_SHAPE_H +#define REACTPHYSICS3D_COLLISION_SHAPE_H // Libraries #include diff --git a/src/collision/shapes/ConeShape.h b/src/collision/shapes/ConeShape.h index b656d641..2e2614d1 100644 --- a/src/collision/shapes/ConeShape.h +++ b/src/collision/shapes/ConeShape.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONE_SHAPE_H -#define CONE_SHAPE_H +#ifndef REACTPHYSICS3D_CONE_SHAPE_H +#define REACTPHYSICS3D_CONE_SHAPE_H // Libraries #include "CollisionShape.h" diff --git a/src/collision/shapes/CylinderShape.h b/src/collision/shapes/CylinderShape.h index fb01add6..9caf7b22 100644 --- a/src/collision/shapes/CylinderShape.h +++ b/src/collision/shapes/CylinderShape.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CYLINDER_SHAPE_H -#define CYLINDER_SHAPE_H +#ifndef REACTPHYSICS3D_CYLINDER_SHAPE_H +#define REACTPHYSICS3D_CYLINDER_SHAPE_H // Libraries #include "CollisionShape.h" diff --git a/src/collision/shapes/SphereShape.h b/src/collision/shapes/SphereShape.h index 8477d2c7..834250d1 100644 --- a/src/collision/shapes/SphereShape.h +++ b/src/collision/shapes/SphereShape.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef SPHERE_SHAPE_H -#define SPHERE_SHAPE_H +#ifndef REACTPHYSICS3D_SPHERE_SHAPE_H +#define REACTPHYSICS3D_SPHERE_SHAPE_H // Libraries #include "CollisionShape.h" diff --git a/src/configuration.h b/src/configuration.h index c4e73597..59319ae8 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONFIGURATION_H -#define CONFIGURATION_H +#ifndef REACTPHYSICS3D_CONFIGURATION_H +#define REACTPHYSICS3D_CONFIGURATION_H // Libraries #include diff --git a/src/constraint/Constraint.h b/src/constraint/Constraint.h index 9470a3c6..e49b4984 100644 --- a/src/constraint/Constraint.h +++ b/src/constraint/Constraint.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONSTRAINT_H -#define CONSTRAINT_H +#ifndef REACTPHYSICS3D_CONSTRAINT_H +#define REACTPHYSICS3D_CONSTRAINT_H // Libraries #include "../body/RigidBody.h" diff --git a/src/constraint/ContactPoint.h b/src/constraint/ContactPoint.h index 0900d480..fa6abe5c 100644 --- a/src/constraint/ContactPoint.h +++ b/src/constraint/ContactPoint.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONTACT_POINT_H -#define CONTACT_POINT_H +#ifndef REACTPHYSICS3D_CONTACT_POINT_H +#define REACTPHYSICS3D_CONTACT_POINT_H // Libraries #include "Constraint.h" diff --git a/src/decimal.h b/src/decimal.h index 8b81eb22..52d0a0a8 100644 --- a/src/decimal.h +++ b/src/decimal.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef DECIMAL_H -#define DECIMAL_H +#ifndef REACTPHYSICS3D_DECIMAL_H +#define REACTPHYSICS3D_DECIMAL_H /// ReactPhysiscs3D namespace namespace reactphysics3d { diff --git a/src/engine/CollisionWorld.h b/src/engine/CollisionWorld.h index 00de6cdf..ba4071d6 100644 --- a/src/engine/CollisionWorld.h +++ b/src/engine/CollisionWorld.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef COLLISION_WORLD_H -#define COLLISION_WORLD_H +#ifndef REACTPHYSICS3D_COLLISION_WORLD_H +#define REACTPHYSICS3D_COLLISION_WORLD_H // Libraries #include diff --git a/src/engine/ContactManifold.h b/src/engine/ContactManifold.h index 68c1d2f3..25fd18c1 100644 --- a/src/engine/ContactManifold.h +++ b/src/engine/ContactManifold.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONTACT_MANIFOLD_H -#define CONTACT_MANIFOLD_H +#ifndef REACTPHYSICS3D_CONTACT_MANIFOLD_H +#define REACTPHYSICS3D_CONTACT_MANIFOLD_H // Libraries #include diff --git a/src/engine/ContactSolver.h b/src/engine/ContactSolver.h index f7bec64a..36997013 100644 --- a/src/engine/ContactSolver.h +++ b/src/engine/ContactSolver.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef CONTACT_SOLVER_H -#define CONTACT_SOLVER_H +#ifndef REACTPHYSICS3D_CONTACT_SOLVER_H +#define REACTPHYSICS3D_CONTACT_SOLVER_H // Libraries #include "../constraint/ContactPoint.h" diff --git a/src/engine/DynamicsWorld.h b/src/engine/DynamicsWorld.h index 1519b369..b2d11bd9 100644 --- a/src/engine/DynamicsWorld.h +++ b/src/engine/DynamicsWorld.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef DYNAMICS_WORLD_H -#define DYNAMICS_WORLD_H +#ifndef REACTPHYSICS3D_DYNAMICS_WORLD_H +#define REACTPHYSICS3D_DYNAMICS_WORLD_H // Libraries #include "CollisionWorld.h" diff --git a/src/engine/OverlappingPair.h b/src/engine/OverlappingPair.h index b3c16880..40f1958b 100644 --- a/src/engine/OverlappingPair.h +++ b/src/engine/OverlappingPair.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef OVERLAPPING_PAIR_H -#define OVERLAPPING_PAIR_H +#ifndef REACTPHYSICS3D_OVERLAPPING_PAIR_H +#define REACTPHYSICS3D_OVERLAPPING_PAIR_H // Libraries #include "ContactManifold.h" diff --git a/src/engine/Profiler.h b/src/engine/Profiler.h index 286e909b..7030e685 100644 --- a/src/engine/Profiler.h +++ b/src/engine/Profiler.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef PROFILER_H -#define PROFILER_H +#ifndef REACTPHYSICS3D_PROFILER_H +#define REACTPHYSICS3D_PROFILER_H #ifdef IS_PROFILING_ACTIVE diff --git a/src/engine/Timer.h b/src/engine/Timer.h index 6c90ab05..22728537 100644 --- a/src/engine/Timer.h +++ b/src/engine/Timer.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef TIMER_H -#define TIMER_H +#ifndef REACTPHYSICS3D_TIMER_H +#define REACTPHYSICS3D_TIMER_H // Libraries #include diff --git a/src/mathematics/Matrix3x3.h b/src/mathematics/Matrix3x3.h index faa5f0fc..560d4031 100644 --- a/src/mathematics/Matrix3x3.h +++ b/src/mathematics/Matrix3x3.h @@ -24,8 +24,8 @@ ********************************************************************************/ -#ifndef MATRIX3X3_H -#define MATRIX3X3_H +#ifndef REACTPHYSICS3D_MATRIX3X3_H +#define REACTPHYSICS3D_MATRIX3X3_H // Libraries #include diff --git a/src/mathematics/Quaternion.h b/src/mathematics/Quaternion.h index d93964e0..c6fd64a1 100644 --- a/src/mathematics/Quaternion.h +++ b/src/mathematics/Quaternion.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef QUATERNION_H -#define QUATERNION_H +#ifndef REACTPHYSICS3D_QUATERNION_H +#define REACTPHYSICS3D_QUATERNION_H // Libraries #include diff --git a/src/mathematics/Transform.h b/src/mathematics/Transform.h index 0ead2ec7..2d3933db 100644 --- a/src/mathematics/Transform.h +++ b/src/mathematics/Transform.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef TRANSFORM_H -#define TRANSFORM_H +#ifndef REACTPHYSICS3D_TRANSFORM_H +#define REACTPHYSICS3D_TRANSFORM_H // Libraries #include "Matrix3x3.h" diff --git a/src/mathematics/Vector3.h b/src/mathematics/Vector3.h index 275c861e..3a54b06a 100644 --- a/src/mathematics/Vector3.h +++ b/src/mathematics/Vector3.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef VECTOR3_H -#define VECTOR3_H +#ifndef REACTPHYSICS3D_VECTOR3_H +#define REACTPHYSICS3D_VECTOR3_H // Libraries #include diff --git a/src/mathematics/mathematics.h b/src/mathematics/mathematics.h index 371cfdea..cc5aa467 100644 --- a/src/mathematics/mathematics.h +++ b/src/mathematics/mathematics.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef MATHEMATICS_H -#define MATHEMATICS_H +#ifndef REACTPHYSICS3D_MATHEMATICS_H +#define REACTPHYSICS3D_MATHEMATICS_H // Libraries #include "Matrix3x3.h" diff --git a/src/mathematics/mathematics_functions.h b/src/mathematics/mathematics_functions.h index e529fa8a..d5278abd 100644 --- a/src/mathematics/mathematics_functions.h +++ b/src/mathematics/mathematics_functions.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef MATHEMATICS_FUNCTIONS_H -#define MATHEMATICS_FUNCTIONS_H +#ifndef REACTPHYSICS3D_MATHEMATICS_FUNCTIONS_H +#define REACTPHYSICS3D_MATHEMATICS_FUNCTIONS_H // Libraries #include "../configuration.h" diff --git a/src/memory/MemoryAllocator.h b/src/memory/MemoryAllocator.h index 8ef90e14..46caa3dd 100644 --- a/src/memory/MemoryAllocator.h +++ b/src/memory/MemoryAllocator.h @@ -23,8 +23,8 @@ * * ********************************************************************************/ -#ifndef MEMORY_ALLOCATOR_H -#define MEMORY_ALLOCATOR_H +#ifndef REACTPHYSICS3D_MEMORY_ALLOCATOR_H +#define REACTPHYSICS3D_MEMORY_ALLOCATOR_H // Libraries #include "../configuration.h"