From 4f189cb2523f7d2563cac591b560460657ac9b02 Mon Sep 17 00:00:00 2001 From: Thomas Combriat Date: Wed, 26 Jul 2023 11:35:36 +0200 Subject: [PATCH] Fix IntegerType.h --- IntegerType.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IntegerType.h b/IntegerType.h index 539673406..053c62443 100644 --- a/IntegerType.h +++ b/IntegerType.h @@ -1,3 +1,5 @@ +#ifndef INTTYPE_H_ +#define INTTYPE_H_ template struct IntegerType { // at an odd value, such as 3 bytes? Add one more byte (up to at most 8 bytes).. @@ -25,3 +27,5 @@ template<> struct IntegerType<8> { typedef uint64_t unsigned_type; typedef int64_t signed_type; }; + +#endif /* INTTYPE_H_ */