aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/kstd/print.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/src/kstd/print.cpp')
-rw-r--r--kernel/src/kstd/print.cpp1
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);
}