From 4c4e60b3c986f01bd99df2b4740bfc31e8ac29d5 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Thu, 2 Oct 2014 19:24:06 +0200 Subject: [PATCH] fix name of include guard --- Util/NumericUtil.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Util/NumericUtil.h b/Util/NumericUtil.h index 5853f8186..57cbe3e78 100644 --- a/Util/NumericUtil.h +++ b/Util/NumericUtil.h @@ -24,8 +24,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __NUMERIC_UTIL_H__ -#define __NUMERIC_UTIL_H__ +#ifndef NUMERIC_UTIL_H_ +#define NUMERIC_UTIL_H_ #include @@ -36,4 +36,4 @@ template inline bool EpsilonCompare(const FloatT d1, const Flo return (std::abs(d1 - d2) < std::numeric_limits::epsilon()); } -#endif +#endif // NUMERIC_UTIL_H_