diff options
author | Carbenium <carbenium@outlook.com> | 2020-06-15 00:21:58 +0200 |
---|---|---|
committer | Carbenium <carbenium@outlook.com> | 2020-06-15 00:22:12 +0200 |
commit | abff505a6eaf3e649be506c802b80eed3dd35f3a (patch) | |
tree | 8561bdf04cb9ebdaa2fadb174968aecaf4f5e6f6 | |
parent | d53a2dea5f133c479fbe23d435bd6db8a0c242b7 (diff) |
common: Add a missing include guard
-rw-r--r-- | src/common/IPLocation/IPLocation.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/IPLocation/IPLocation.h b/src/common/IPLocation/IPLocation.h index d60ebb9d6f5..ba97e5caa96 100644 --- a/src/common/IPLocation/IPLocation.h +++ b/src/common/IPLocation/IPLocation.h @@ -15,6 +15,9 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef IPLOCATION_H +#define IPLOCATION_H + #include "Define.h" #include <string> #include <vector> @@ -46,3 +49,5 @@ class TC_COMMON_API IpLocationStore }; #define sIPLocation IpLocationStore::Instance() + +#endif |