1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-22 08:16:42 +00:00

Improve constness, formatting.

This commit is contained in:
Thomas Harte
2024-12-01 17:51:20 -05:00
parent 8b88d1294d
commit 3a0f4a0bfc
34 changed files with 857 additions and 778 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ enum class Personality {
EGA, // Extended EGA-style CRTC; uses 16-bit addressing throughout.
};
constexpr bool is_egavga(Personality p) {
constexpr bool is_egavga(const Personality p) {
return p >= Personality::EGA;
}