From 18a165268e8b539251d5626d0f236eb07be3d71e Mon Sep 17 00:00:00 2001 From: Patman64 Date: Mon, 19 Jan 2015 00:20:22 -0500 Subject: [PATCH] Add include guards to ElunaIncludes.h. --- ElunaIncludes.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ElunaIncludes.h b/ElunaIncludes.h index 68949af..fb67c61 100644 --- a/ElunaIncludes.h +++ b/ElunaIncludes.h @@ -4,6 +4,9 @@ * Please see the included DOCS/LICENSE.md for more information */ +#ifndef _ELUNA_INCLUDES_H +#define _ELUNA_INCLUDES_H + // Required #include "AccountMgr.h" #include "AuctionHouseMgr.h" @@ -126,4 +129,6 @@ enum SelectAggroTarget SELECT_TARGET_NEAREST, SELECT_TARGET_FARTHEST }; -#endif +#endif // TRINITY + +#endif // _ELUNA_INCLUDES_H \ No newline at end of file