run IWYU on entire codebase

This commit is contained in:
Tropical
2026-04-01 18:02:06 -05:00
parent 729aad5f06
commit 6eb277c9aa
1125 changed files with 5104 additions and 2009 deletions

View File

@@ -1,7 +1,6 @@
#pragma once
#include <stdint.h>
#include <cstdint>
#include <vector>

View File

@@ -4,6 +4,7 @@
#include <cstdint>
#include <string>
#include <vector>
#include "DataInput.h"
#include "InputStream.h"

View File

@@ -2,6 +2,7 @@
// 4J Stu - Represents Java standard library class (although we miss out an
// intermediate inheritance class that we don't care about)
#include <stdint.h>
#include <string>
#include "DataOutput.h"

View File

@@ -1,6 +1,7 @@
#pragma once
// 4J Stu - Represents Java standard lib abstract
#include <stdint.h>
#include <cstdio>
#include "OutputStream.h"

View File

@@ -4,6 +4,7 @@
#include "Reader.h"
class InputStream;
class DataInputStream;
class InputStreamReader : public Reader {
private:

View File

@@ -1,6 +1,10 @@
#pragma once
#include <stdint.h>
#include "Random.h"
class Random;
class Math {
private:
static Random rand;