From d4f91fc6d65632dab2c38a3a21395c0ac3cd2e66 Mon Sep 17 00:00:00 2001 From: Nick Porcino Date: Sat, 22 Nov 2014 10:46:44 -0800 Subject: [PATCH] Trivial header guard fix --- include/bx/string.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/bx/string.h b/include/bx/string.h index 20bb926..c1b87bb 100644 --- a/include/bx/string.h +++ b/include/bx/string.h @@ -3,8 +3,8 @@ * License: http://www.opensource.org/licenses/BSD-2-Clause */ -#ifndef BX_PRINTF_H_HEADER_GUARD -#define BX_PRINTF_H_HEADER_GUARD +#ifndef BX_STRING_H_HEADER_GUARD +#define BX_STRING_H_HEADER_GUARD #include "bx.h" #include @@ -422,4 +422,4 @@ namespace bx } // namespace bx -#endif // BX_PRINTF_H_HEADER_GUARD +#endif // BX_STRING_H_HEADER_GUARD