Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit 5a5a3a3

Browse files
committed
tools: ditch iwyu
1 parent ca58dd4 commit 5a5a3a3

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ even refuse to compile.
6262

6363
This project uses [pre-commit](https://pre-commit.com/) to make sure the code
6464
is formatted the right way. This tool has additional external dependencies:
65-
`clang-format` for automatic code formatting and `include-what-you-use` to
66-
remove unused `#include`s.
67-
To install pre-commit:
65+
`clang-format` for automatic code formatting. To install pre-commit:
6866

6967
```
7068
python3 -m pip install --user pre-commit
@@ -74,7 +72,7 @@ pre-commit install
7472
To install required external dependencies on Ubuntu:
7573

7674
```
77-
apt-get install -y iwyu clang-format-18
75+
apt-get install -y clang-format-18
7876
```
7977

8078
After this, each time you make a commit a hook should trigger to automatically

src/game/game_string.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44

55
void GameString_Init(void)
66
{
7-
// IWYU pragma: begin_keep
87
#include "game_string.def"
9-
// IWYU pragma: end_keep
108
}
119

1210
void GameString_Shutdown(void)

subprojects/libtrx

0 commit comments

Comments
 (0)