Skip to content

Commit e8dfce0

Browse files
authored
Merge pull request #45 from ReubenJ/bug/lexy-input-typo
Fix typo in `input_location.hpp`
2 parents e49da42 + 282eba5 commit e8dfce0

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)