We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b45a1f + 2a2067a commit a573b5eCopy full SHA for a573b5e
src/CRC.hpp
@@ -8,8 +8,8 @@
8
9
#pragma once
10
11
+#include <cstddef>
12
#include <cstdint>
-#include <vector>
13
14
namespace CRC {
15
src/tokeniser.cpp
@@ -1,10 +1,12 @@
1
#include "tokeniser.hpp"
2
#include "trie.hpp"
3
4
+#include <algorithm>
5
#include <cctype>
6
#include <cstdio>
7
#include <functional>
-#include <map>
+#include <vector>
+#include <string>
/*
Implements parsing of BBC BASIC v2.
src/trie.hpp
@@ -3,6 +3,7 @@
#include <initializer_list>
#include <optional>
#include <unordered_map>
+#include <utility>
/// Implements a fairly-vanilla retrieval tree.
///
0 commit comments