Database: Remove unused includes

Quite a few includes aren't directly used anywhere within the header
itself. We can remove these to avoid unintentionally propagating them
into other source files.
This commit is contained in:
Lioncash 2019-08-19 23:12:05 -04:00
parent 263c0697bc
commit 7635b9c6c1
1 changed files with 8 additions and 12 deletions

View File

@ -1,21 +1,17 @@
#pragma once #pragma once
#include <iterator> #include <cassert>
#include <string> #include <cstddef>
#include <cstdint>
#include <cstdio>
#include <functional> #include <functional>
#include <vector> #include <memory>
#include <map> #include <string>
#include <list>
#include <unordered_map> #include <unordered_map>
#include <unordered_set> #include <unordered_set>
#include <memory> #include <vector>
#include <atomic>
#include <fstream>
#include <stdint.h>
#include <cassert>
#include "athena/IStreamReader.hpp" #include <logvisor/logvisor.hpp>
#include "logvisor/logvisor.hpp"
#include "hecl.hpp" #include "hecl.hpp"