Add header guard
This commit is contained in:
parent
7a194fb224
commit
9ec142daa8
|
@ -1,3 +1,6 @@
|
||||||
|
#ifndef CSTDINT_H
|
||||||
|
#define CSTDINT_H
|
||||||
|
|
||||||
#if defined(__has_include)
|
#if defined(__has_include)
|
||||||
# if __has_include(<cstdint>)
|
# if __has_include(<cstdint>)
|
||||||
# include <cstdint>
|
# include <cstdint>
|
||||||
|
@ -11,3 +14,5 @@
|
||||||
#else
|
#else
|
||||||
# include <cstdint>
|
# include <cstdint>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif // CSTDINT_H
|
||||||
|
|
Loading…
Reference in New Issue