From 9ec142daa892182a0e29fb15f050a8d729ae926c Mon Sep 17 00:00:00 2001 From: "U-DESKTOP-UVBJEGH\\Cloud" Date: Fri, 8 Jun 2018 17:45:10 +0800 Subject: [PATCH] Add header guard --- src/common/cstdint.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/common/cstdint.h b/src/common/cstdint.h index 7fecbbaf..bb2e0ce0 100644 --- a/src/common/cstdint.h +++ b/src/common/cstdint.h @@ -1,3 +1,6 @@ +#ifndef CSTDINT_H +#define CSTDINT_H + #if defined(__has_include) # if __has_include() # include @@ -11,3 +14,5 @@ #else # include #endif + +#endif // CSTDINT_H