From 1c88a7a0fba0a52694095ff22a2bfa5d4d618ad0 Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 18 Oct 2010 09:13:29 +0200 Subject: [PATCH] Changed: Added include guard to stdmisc.h --- code/nel/src/misc/stdmisc.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/nel/src/misc/stdmisc.h b/code/nel/src/misc/stdmisc.h index 27c495672..572a90f1a 100644 --- a/code/nel/src/misc/stdmisc.h +++ b/code/nel/src/misc/stdmisc.h @@ -14,6 +14,9 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . +#ifndef NL_STDMISC_H +#define NL_STDMISC_H + #include "nel/misc/types_nl.h" #include @@ -54,3 +57,5 @@ #define NOMINMAX #include #endif + +#endif // NL_STDMISC_H