diff options
-rw-r--r-- | Kernel/Graphics/Console/TextModeConsole.cpp | 2 | ||||
-rw-r--r-- | Kernel/Graphics/IntelNativeGraphicsAdapter.cpp | 2 | ||||
-rw-r--r-- | Kernel/Time/PIT.cpp | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/Graphics/Console/TextModeConsole.cpp b/Kernel/Graphics/Console/TextModeConsole.cpp index 568d6f6018..9c40da3e0b 100644 --- a/Kernel/Graphics/Console/TextModeConsole.cpp +++ b/Kernel/Graphics/Console/TextModeConsole.cpp @@ -45,7 +45,7 @@ enum VGAColor : u8 { White, }; -static inline VGAColor convert_standard_color_to_vga_color(Console::Color color) +[[maybe_unused]] static inline VGAColor convert_standard_color_to_vga_color(Console::Color color) { switch (color) { case Console::Color::Black: diff --git a/Kernel/Graphics/IntelNativeGraphicsAdapter.cpp b/Kernel/Graphics/IntelNativeGraphicsAdapter.cpp index af6b932865..cf418279da 100644 --- a/Kernel/Graphics/IntelNativeGraphicsAdapter.cpp +++ b/Kernel/Graphics/IntelNativeGraphicsAdapter.cpp @@ -217,7 +217,7 @@ void IntelNativeGraphicsAdapter::enable_vga_plane() VERIFY(m_modeset_lock.is_locked()); } -static inline const char* convert_register_index_to_string(IntelGraphics::RegisterIndex index) +[[maybe_unused]] static inline const char* convert_register_index_to_string(IntelGraphics::RegisterIndex index) { switch (index) { case IntelGraphics::RegisterIndex::PipeAConf: diff --git a/Kernel/Time/PIT.cpp b/Kernel/Time/PIT.cpp index 68ec1fde87..581c9a6afb 100644 --- a/Kernel/Time/PIT.cpp +++ b/Kernel/Time/PIT.cpp @@ -22,7 +22,7 @@ UNMAP_AFTER_INIT NonnullRefPtr<PIT> PIT::initialize(Function<void(const Register return adopt_ref(*new PIT(move(callback))); } -inline static void reset_countdown(u16 timer_reload) +[[maybe_unused]] inline static void reset_countdown(u16 timer_reload) { IO::out8(PIT_CTL, TIMER0_SELECT | WRITE_WORD | MODE_COUNTDOWN); IO::out8(TIMER0_CTL, LSB(timer_reload)); diff --git a/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp index fb16b3383f..d9da8fb676 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp @@ -17,7 +17,7 @@ namespace Web::SVG { -static void print_instruction(const PathInstruction& instruction) +[[maybe_unused]] static void print_instruction(const PathInstruction& instruction) { VERIFY(PATH_DEBUG); |