From 8036cf033f9606596edfd0da2c58006d789abce0 Mon Sep 17 00:00:00 2001 From: Krishna Vedala Date: Fri, 29 May 2020 09:44:08 -0400 Subject: [PATCH] cpplint correction for header guard style --- math/large_number.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/math/large_number.h b/math/large_number.h index 959622187..c1a3665e4 100644 --- a/math/large_number.h +++ b/math/large_number.h @@ -4,8 +4,8 @@ * numbers. */ -#ifndef OTHERS_LARGE_NUMBER_H_ -#define OTHERS_LARGE_NUMBER_H_ +#ifndef MATH_LARGE_NUMBER_H_ +#define MATH_LARGE_NUMBER_H_ #include #include #include @@ -284,4 +284,4 @@ class large_number { _digits; /**< where individual digits are stored */ }; -#endif // OTHERS_LARGE_NUMBER_H_ +#endif // MATH_LARGE_NUMBER_H_