Skip to content

Commit 4f17db2

Browse files
committed
more missing includes
1 parent 5219f7f commit 4f17db2

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

include/cpputils/b64-alphabet.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#pragma once
2+
#include <cstdint>
23

34
struct StandardBase64 {
45
static char code2char(int code)

include/cpputils/base32encoder.h

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <vector>
55
#include <string>
66
#include <stdexcept>
7+
#include <cstdint>
78

89
// encode a 5 byte chunk into 8 characters
910
template<typename P, typename S>

include/cpputils/base64encoder.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <string>
66
#include <stdexcept>
77
#include <cpputils/b64-alphabet.h>
8+
#include <cstdint>
89
/*
910
Functions for base64 encoding and decoding.
1011

include/cpputils/crccalc.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <array>
3+
#include <cstdint>
34

45
template<typename INT, INT poly, int nbits>
56
class CrcCalc {

tests/test-crccalc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// include twice to detect proper header behaviour
55
#include <cpputils/crccalc.h>
66
#include <cpputils/crccalc.h>
7+
#include <cstdint>
78

89
template<typename P>
910
uint32_t crc24_1(P ptr, size_t size)

tests/test-timepoint.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <kiss/unittestframework.h>
1+
#include "unittestframework.h"
22

33
// include twice to detect proper header behaviour
44
#include <cpputils/timepoint.h>

0 commit comments

Comments
 (0)