From 906915e058a8988405b6a17e79807aceb3392bac Mon Sep 17 00:00:00 2001 From: CaCO3 Date: Sun, 18 Sep 2022 22:14:21 +0200 Subject: [PATCH] add include guard --- code/main/version.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/main/version.h b/code/main/version.h index 5b1ee98f..3e534ba6 100644 --- a/code/main/version.h +++ b/code/main/version.h @@ -1,3 +1,6 @@ +#ifndef _VERSION_H +#define _VERSION_H + // These variables are autogenerated and compiled // into the library by the version.cmake script extern "C" @@ -13,6 +16,7 @@ extern "C" #include "Helper.h" #include +// todo remove const char* GIT_BASE_BRANCH = "master - v11.3.0 - 2022-09-16"; @@ -57,4 +61,6 @@ const char* getHTMLversion(void){ fclose(pFile); return _char_getHTMLversion; -} \ No newline at end of file +} + +#endif // _VERSION_H \ No newline at end of file