Skip to content

Commit 08443c4

Browse files
committed
Add missing include
stdint is needed for uint64_t and friends. Discovered when testing pre-compiled headers, which disturbs usual include ordering.
1 parent a571ba2 commit 08443c4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/int_utils.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#ifndef _MINISKETCH_INT_UTILS_H_
88
#define _MINISKETCH_INT_UTILS_H_
99

10+
#include <stdint.h>
1011
#include <stdlib.h>
1112

1213
#include <limits>

0 commit comments

Comments
 (0)