Skip to content

Commit 282eba5

Browse files
committed
Fix typo in input_location.hpp:
1 parent a6d190c commit 282eba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/utility/lexy/include/lexy/input_location.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class input_location
162162
{
163163
if (lhs._line_nr != rhs._line_nr)
164164
return lhs._line_nr < rhs._line_nr;
165-
return lhs._column_nr < rhs._colum_nr;
165+
return lhs._column_nr < rhs._column_nr;
166166
}
167167
friend constexpr bool operator<=(const input_location& lhs, const input_location& rhs)
168168
{

0 commit comments

Comments
 (0)