diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-20 18:56:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-20 18:56:39 +0300 |
commit | 5eee15f92592d51e4c4801e2668ef6a008b165e4 (patch) | |
tree | 487843afde1125dafe2e830f94f3caadd27a0bd2 | |
parent | e7062838351fc67ab63a4780a25365dac4115005 (diff) | |
download | plus-5eee15f92592d51e4c4801e2668ef6a008b165e4.tar.gz plus-5eee15f92592d51e4c4801e2668ef6a008b165e4.tar.bz2 plus-5eee15f92592d51e4c4801e2668ef6a008b165e4.tar.xz plus-5eee15f92592d51e4c4801e2668ef6a008b165e4.zip |
Add guard header into localconsts.h
-rw-r--r-- | src/localconsts.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index ef667dfd9..bbc5f632d 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -18,6 +18,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef LOCALCONSTS_H +#define LOCALCONSTS_H + #define ENABLEDEBUGLOG 1 #define CAST_8 static_cast<char> @@ -405,3 +408,5 @@ UTILS_PERFOMANCE_H // guard for protect previous include #ifdef HAVE_CONFIG_H #include "config.h" #endif // HAVE_CONFIG_H + +#endif // LOCALCONSTS_H |