Replace some #define with constexpr

This commit is contained in:
Rangi42
2025-01-03 21:35:17 -05:00
committed by Rangi
parent a5f12f66bb
commit 4e2464a69d
8 changed files with 38 additions and 40 deletions

View File

@@ -20,7 +20,7 @@
#include "link/section.hpp"
#include "link/symbol.hpp"
#define BANK_SIZE 0x4000
static constexpr size_t BANK_SIZE = 0x4000;
FILE *outputFile;
FILE *overlayFile;