Skip to content

Commit 09fac5d

Browse files
committed
fix a signed/unsigned comparison build issue with gcc
1 parent b79c8f0 commit 09fac5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/extract.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class Extract {
8181

8282
const char *end = text+std::strlen(text);
8383
text = __find_start(text, end);
84-
auto pos = 1;
84+
auto pos = 1u;
8585

8686
auto first_position = std::min(x_position, y_position);
8787
auto last_position = std::max(x_position, y_position);

0 commit comments

Comments
 (0)