diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG')
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp index a11ac8c7fd..35657ece06 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGPathElement.cpp @@ -38,7 +38,7 @@ namespace Web::SVG { static void print_instruction(const PathInstruction& instruction) { - ASSERT(debug_path); + ASSERT(PATH_DEBUG); auto& data = instruction.data; @@ -463,7 +463,7 @@ Gfx::Path& SVGPathElement::get_path() auto& absolute = instruction.absolute; auto& data = instruction.data; - if constexpr (debug_path) { + if constexpr (PATH_DEBUG) { print_instruction(instruction); } |