From 38d35603f224e92c7f4dfe1802b0ebfceebec46a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 7 Feb 2018 15:51:23 +1100 Subject: [PATCH] Correct header guard in last commit --- source/blender/makesdna/DNA_object_fluidsim_types.h | 7 +++---- source/blender/makesdna/DNA_object_force_types.h | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/source/blender/makesdna/DNA_object_fluidsim_types.h b/source/blender/makesdna/DNA_object_fluidsim_types.h index c2816383ffb..b305235083a 100644 --- a/source/blender/makesdna/DNA_object_fluidsim_types.h +++ b/source/blender/makesdna/DNA_object_fluidsim_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef __DNA_OBJECT_FLUIDSIM_H__ -#define __DNA_OBJECT_FLUIDSIM_H__ +#ifndef __DNA_OBJECT_FLUIDSIM_TYPES_H__ +#define __DNA_OBJECT_FLUIDSIM_TYPES_H__ #include "DNA_ID.h" #include "DNA_defs.h" @@ -189,6 +189,5 @@ typedef struct FluidsimSettings { } #endif -#endif - +#endif /* __DNA_OBJECT_FLUIDSIM_TYPES_H__ */ diff --git a/source/blender/makesdna/DNA_object_force_types.h b/source/blender/makesdna/DNA_object_force_types.h index 605463be1f1..47467917315 100644 --- a/source/blender/makesdna/DNA_object_force_types.h +++ b/source/blender/makesdna/DNA_object_force_types.h @@ -29,8 +29,8 @@ * \ingroup DNA */ -#ifndef __DNA_OBJECT_FORCE_H__ -#define __DNA_OBJECT_FORCE_H__ +#ifndef __DNA_OBJECT_FORCE_TYPES_H__ +#define __DNA_OBJECT_FORCE_TYPES_H__ #ifdef __cplusplus extern "C" { @@ -453,5 +453,5 @@ typedef struct SoftBody { } #endif -#endif +#endif /* __DNA_OBJECT_FORCE_TYPES_H__ */