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

@@ -2,9 +2,7 @@
#include "java/ByteBuffer.h"
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <algorithm>
#include <vector>

View File

@@ -1,9 +1,6 @@
#include "java/File.h"
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include <chrono>
#include <filesystem>
#include <string>

View File

@@ -2,6 +2,9 @@
#include <cassert>
#include <cstring>
#include <algorithm>
#include "java/InputOutputStream/Reader.h"
// Creates a buffering character-input stream that uses a default-sized input
// buffer. Parameters: in - A Reader

View File

@@ -7,8 +7,6 @@
// length - the maximum number of bytes to read from the buffer.
#include "java/InputOutputStream/ByteArrayInputStream.h"
#include <stdint.h>
#include <algorithm>
#include <cstring>
#include <vector>

View File

@@ -1,9 +1,7 @@
#include "java/InputOutputStream/DataOutputStream.h"
#include <stdio.h>
#include <bit>
#include <cstdint>
#include <string>
#include <vector>

View File

@@ -3,6 +3,7 @@
#include <cassert>
#include <cstdint>
#include <vector>
#include <string>
#include "console_helpers/StringHelpers.h" // 4jcraft TODO
#include "java/File.h"

View File

@@ -3,6 +3,8 @@
#include <cmath>
#include <limits>
#include "java/Random.h"
Random Math::rand = Random();
// Returns a double value with a positive sign, greater than or equal to 0.0 and

View File

@@ -1,12 +1,12 @@
#include "java/System.h"
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <algorithm>
#include <chrono>
#include <vector>
#include <format>
#include "java/System.h"
class Biome;
class Node;