mirror of https://github.com/AxioDL/metaforce.git
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:
parent
263c0697bc
commit
7635b9c6c1
|
@ -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"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue