We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd01da commit 832e953Copy full SHA for 832e953
Libraries/LibWeb/SVG/AttributeParser.cpp
@@ -11,7 +11,6 @@
11
#include <AK/StringBuilder.h>
12
#include <AK/StringConversions.h>
13
#include <LibWeb/SVG/AttributeParser.h>
14
-#include <ctype.h>
15
16
namespace Web::SVG {
17
@@ -800,7 +799,7 @@ bool AttributeParser::match_length() const
800
799
if (ch(offset) == '.')
801
offset++;
802
803
- return !done() && isdigit(ch(offset));
+ return !done() && is_ascii_digit(ch(offset));
804
}
805
806
0 commit comments