From b4bc405dce047396ce11519c96f2bd5b10d6f65e Mon Sep 17 00:00:00 2001 From: Areloch Date: Sat, 14 May 2016 14:16:43 -0500 Subject: [PATCH] Updates the include guard in ShapeAsset --- Engine/source/T3D/assets/ShapeAsset.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Engine/source/T3D/assets/ShapeAsset.h b/Engine/source/T3D/assets/ShapeAsset.h index dac95a45e..6766d1682 100644 --- a/Engine/source/T3D/assets/ShapeAsset.h +++ b/Engine/source/T3D/assets/ShapeAsset.h @@ -19,8 +19,8 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. //----------------------------------------------------------------------------- -#ifndef _SHAPE_ASSET_H_ -#define _SHAPE_ASSET_H_ +#ifndef SHAPE_ASSET_H +#define SHAPE_ASSET_H #ifndef _ASSET_BASE_H_ #include "assets/assetBase.h" @@ -84,5 +84,5 @@ protected: DefineConsoleType(TypeShapeAssetPtr, ShapeAsset) -#endif // _ASSET_BASE_H_ +#endif