Skip to content

Commit

Permalink
馃洜 Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Aug 23, 2021
1 parent 4fa0515 commit ec2d8a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/ztd/ranges/algorithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ namespace ztd { namespace ranges {
constexpr bool __lexicographical_compare(_First0 __first0, _Last0 __last0, _First1 __first1, _Last1 __last1) {
#if ZTD_IS_ON(ZTD_STD_LIBRARY_CONSTEXPR_ALGORITHMS_I_) && ZTD_IS_ON(ZTD_STD_LIBRARY_RANGES_I_)
return ::std::ranges::lexicographical_compare(
::std::move(__first0), ::std::move(__last0), ::std::move(__first1), ::std::move(__last1))
::std::move(__first0), ::std::move(__last0), ::std::move(__first1), ::std::move(__last1));
#else
#if ZTD_IS_ON(ZTD_STD_LIBRARY_CONSTEXPR_ALGORITHMS_I_)
if constexpr (::std::is_same_v<_First0, _Last0> && ::std::is_same_v<_First1, _Last1>) {
Expand Down

0 comments on commit ec2d8a4

Please sign in to comment.