diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2024-02-13 14:22:45 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-13 14:22:45 +0100 |
| commit | 6b0b5fc36227949a6dda9c715309a9d6100f9da9 (patch) | |
| tree | 5a3b7056d2bc7e5b0ab64aed9439464e1519f5fa /src/c8asm | |
| parent | 858ab8e7a73a6af670d3cf842c149412da0e5959 (diff) | |
Remove [[maybe_unused]] from stream parameter
Diffstat (limited to 'src/c8asm')
| -rw-r--r-- | src/c8asm/assembler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c8asm/assembler.c b/src/c8asm/assembler.c index 6cdebe7..b5c6f1b 100644 --- a/src/c8asm/assembler.c +++ b/src/c8asm/assembler.c @@ -81,7 +81,7 @@ pushlabel(struct labels *dst, struct label lbl) } void -assemble([[maybe_unused]] FILE *stream, struct ast ast) +assemble(FILE *stream, struct ast ast) { #define PUT(X) \ do { \ |