Skip to content

Commit

Permalink
Fix IntegerType.h
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcombriat authored Jul 26, 2023
1 parent 142c125 commit 4f189cb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions IntegerType.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#ifndef INTTYPE_H_
#define INTTYPE_H_

template<uint8_t BYTES> struct IntegerType {
// at an odd value, such as 3 bytes? Add one more byte (up to at most 8 bytes)..
Expand Down Expand Up @@ -25,3 +27,5 @@ template<> struct IntegerType<8> {
typedef uint64_t unsigned_type;
typedef int64_t signed_type;
};

#endif /* INTTYPE_H_ */

0 comments on commit 4f189cb

Please sign in to comment.