From 882c9c86c4f839e0d57125ffd5618fb7450c05c5 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 12 Dec 2019 06:00:51 +0200 Subject: [PATCH] More detabification --- test/string_view_constexpr_test1.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/string_view_constexpr_test1.cpp b/test/string_view_constexpr_test1.cpp index 705c9d2..d116e12 100644 --- a/test/string_view_constexpr_test1.cpp +++ b/test/string_view_constexpr_test1.cpp @@ -44,11 +44,11 @@ struct constexpr_char_traits static constexpr int_type eof() noexcept { return EOF; } }; -// yields: -// 0 if for each i in [0,n), X::eq(s1[i],s2[i]) is true; -// else, a negative value if, for some j in [0,n), X::lt(s1[j],s2[j]) is true and -// for each i in [0,j) X::eq(s2[i],s2[i]) is true; -// else a positive value. +// yields: +// 0 if for each i in [0,n), X::eq(s1[i],s2[i]) is true; +// else, a negative value if, for some j in [0,n), X::lt(s1[j],s2[j]) is true and +// for each i in [0,j) X::eq(s2[i],s2[i]) is true; +// else a positive value. constexpr int constexpr_char_traits::compare(const char_type* s1, const char_type* s2, size_t n) noexcept { for (; n != 0; --n, ++s1, ++s2)