Skip to content

Commit fc1a398

Browse files
committed
clang-tidy: remove const
It doesn't do what it's supposed to here. Found with misc-misplaced-const Signed-off-by: Rosen Penev <[email protected]>
1 parent e2ee133 commit fc1a398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xmp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class XMLValidator {
5353
// error out if the depth exceeds this limit.
5454
static const size_t max_recursion_limit_ = 1000;
5555

56-
const XML_Parser parser_;
56+
XML_Parser parser_;
5757

5858
public:
5959
// Runs an XML parser on `buf`. Throws an exception if the XML is invalid.

0 commit comments

Comments
 (0)