Skip to content

Commit 4829be8

Browse files
committed
Fix typo
1 parent 50181f9 commit 4829be8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/tao/json/external/string_view.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,8 @@ namespace tao
479479
return x.compare( y ) > 0;
480480
}
481481

482-
template< class charT, class traits constexpr bool operator<=( basic_string_view< charT, traits > x, basic_string_view< charT, traits > y ) noexcept
482+
template< class charT, class traits >
483+
constexpr bool operator<=( basic_string_view< charT, traits > x, basic_string_view< charT, traits > y ) noexcept
483484
{
484485
return x.compare( y ) <= 0;
485486
}

0 commit comments

Comments
 (0)