More pass by reference changes

This commit is contained in:
Dave Allie
2025-12-06 15:50:11 +11:00
parent 5ed2fe391d
commit 4ecfdea1a1
7 changed files with 42 additions and 37 deletions

View File

@@ -2,8 +2,6 @@
#include <Utf8.h>
EpdFont::EpdFont(const EpdFontData* data) { this->data = data; }
inline int min(const int a, const int b) { return a < b ? a : b; }
inline int max(const int a, const int b) { return a < b ? b : a; }