diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-12-22 14:53:33 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-12-22 14:53:33 +0100 |
| commit | b4ff67c8a9bebd99eb3c06ea141fe0f1b8feb5a4 (patch) | |
| tree | 3730f8ea9c880d97e3a63426fac9939976c39921 /kernel/src/kstd | |
| parent | 5c01134b95fc83b485720c3d06ef0284e4ba8568 (diff) | |
| download | teachos-b4ff67c8a9bebd99eb3c06ea141fe0f1b8feb5a4.tar.xz teachos-b4ff67c8a9bebd99eb3c06ea141fe0f1b8feb5a4.zip | |
chore: clean up linter warnings
Diffstat (limited to 'kernel/src/kstd')
| -rw-r--r-- | kernel/src/kstd/print.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/src/kstd/print.cpp b/kernel/src/kstd/print.cpp index c70f031..2665b9a 100644 --- a/kernel/src/kstd/print.cpp +++ b/kernel/src/kstd/print.cpp @@ -102,7 +102,6 @@ namespace kstd::os { while (current != end && *current >= '0' && *current <= '9') { - // NOLINTNEXTLINE(cppcoreguidelines-avoid-magic-numbers) index = index * 10 + static_cast<std::size_t>(*current - '0'); std::advance(current, 1); } |
