Skip to content

Commit a573b5e

Browse files
authored
Merge pull request #1 from TomHarte/HeaderRevision
Review all #include lists.
2 parents 6b45a1f + 2a2067a commit a573b5e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/CRC.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstddef>
1112
#include <cstdint>
12-
#include <vector>
1313

1414
namespace CRC {
1515

src/tokeniser.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
#include "tokeniser.hpp"
22
#include "trie.hpp"
33

4+
#include <algorithm>
45
#include <cctype>
56
#include <cstdio>
67
#include <functional>
7-
#include <map>
8+
#include <vector>
9+
#include <string>
810

911
/*
1012
Implements parsing of BBC BASIC v2.

src/trie.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include <initializer_list>
44
#include <optional>
55
#include <unordered_map>
6+
#include <utility>
67

78
/// Implements a fairly-vanilla retrieval tree.
89
///

0 commit comments

Comments
 (0)