Skip to content

Commit 90f6479

Browse files
committed
Rename _s to -s in placeholder names per editorial guidelines.
1 parent d243672 commit 90f6479

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

source/support.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4653,9 +4653,9 @@
46534653
\rSec2[cmp.object]{Class \tcode{compare_three_way}}
46544654

46554655
\pnum
4656-
In this subclause, \tcode{\placeholdernc{BUILTIN_PTR_THREE_WAY}(T, U)}
4656+
In this subclause, \tcode{\placeholdernc{BUILTIN-PTR-THREE-WAY}(T, U)}
46574657
for types \tcode{T} and \tcode{U} is a boolean constant expression.
4658-
\tcode{\placeholdernc{BUILTIN_PTR_THREE_WAY}(T, U)} is \tcode{true}
4658+
\tcode{\placeholdernc{BUILTIN-PTR-THREE-WAY}(T, U)} is \tcode{true}
46594659
if and only if \tcode{<=>} in the expression
46604660
\begin{codeblock}
46614661
declval<T>() <=> declval<U>()
@@ -4665,7 +4665,7 @@
46654665
\begin{codeblock}
46664666
struct compare_three_way {
46674667
template<class T, class U>
4668-
requires ThreeWayComparableWith<T, U> || @\placeholdernc{BUILTIN_PTR_THREE_WAY}@(T, U)
4668+
requires ThreeWayComparableWith<T, U> || @\placeholdernc{BUILTIN-PTR-THREE-WAY}@(T, U)
46694669
constexpr auto operator()(T&& t, U&& u) const;
46704670

46714671
using is_transparent = @\unspec@;

source/utilities.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14656,10 +14656,10 @@
1465614656
\rSec2[range.cmp]{Concept-constrained comparisons}
1465714657

1465814658
\pnum
14659-
In this subclause, \tcode{\placeholdernc{BUILTIN_PTR_CMP}(T, $op$, U)} for types \tcode{T}
14659+
In this subclause, \tcode{\placeholdernc{BUILTIN-PTR-CMP}(T, $op$, U)} for types \tcode{T}
1466014660
and \tcode{U} and where $op$ is an equality\iref{expr.eq} or relational
1466114661
operator\iref{expr.rel} is a boolean constant expression.
14662-
\tcode{\placeholdernc{BUILTIN_PTR_CMP}(T, $op$, U)} is \tcode{true} if and only if $op$
14662+
\tcode{\placeholdernc{BUILTIN-PTR-CMP}(T, $op$, U)} is \tcode{true} if and only if $op$
1466314663
in the expression \tcode{declval<T>() $op$ declval<U>()} resolves to a built-in
1466414664
operator comparing pointers.
1466514665

@@ -14673,7 +14673,7 @@
1467314673
\begin{itemdecl}
1467414674
struct ranges::equal_to {
1467514675
template<class T, class U>
14676-
requires EqualityComparableWith<T, U> || @\placeholdernc{BUILTIN_PTR_CMP}@(T, ==, U)
14676+
requires EqualityComparableWith<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, ==, U)
1467714677
constexpr bool operator()(T&& t, U&& u) const;
1467814678

1467914679
using is_transparent = @\unspecnc@;
@@ -14708,7 +14708,7 @@
1470814708
\begin{itemdecl}
1470914709
struct ranges::not_equal_to {
1471014710
template<class T, class U>
14711-
requires EqualityComparableWith<T, U> || @\placeholdernc{BUILTIN_PTR_CMP}@(T, ==, U)
14711+
requires EqualityComparableWith<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, ==, U)
1471214712
constexpr bool operator()(T&& t, U&& u) const;
1471314713

1471414714
using is_transparent = @\unspecnc@;
@@ -14727,7 +14727,7 @@
1472714727
\begin{itemdecl}
1472814728
struct ranges::greater {
1472914729
template<class T, class U>
14730-
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN_PTR_CMP}@(U, <, T)
14730+
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(U, <, T)
1473114731
constexpr bool operator()(T&& t, U&& u) const;
1473214732

1473314733
using is_transparent = @\unspecnc@;
@@ -14746,7 +14746,7 @@
1474614746
\begin{itemdecl}
1474714747
struct ranges::less {
1474814748
template<class T, class U>
14749-
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN_PTR_CMP}@(T, <, U)
14749+
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, <, U)
1475014750
constexpr bool operator()(T&& t, U&& u) const;
1475114751

1475214752
using is_transparent = @\unspecnc@;
@@ -14787,7 +14787,7 @@
1478714787
\begin{itemdecl}
1478814788
struct ranges::greater_equal {
1478914789
template<class T, class U>
14790-
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN_PTR_CMP}@(T, <, U)
14790+
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(T, <, U)
1479114791
constexpr bool operator()(T&& t, U&& u) const;
1479214792

1479314793
using is_transparent = @\unspecnc@;
@@ -14806,7 +14806,7 @@
1480614806
\begin{itemdecl}
1480714807
struct ranges::less_equal {
1480814808
template<class T, class U>
14809-
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN_PTR_CMP}@(U, <, T)
14809+
requires StrictTotallyOrderedWith<T, U> || @\placeholdernc{BUILTIN-PTR-CMP}@(U, <, T)
1481014810
constexpr bool operator()(T&& t, U&& u) const;
1481114811

1481214812
using is_transparent = @\unspecnc@;

0 commit comments

Comments
 (0)