Skip to content

Commit 9a1d14c

Browse files
committed
Minimize scope of @..@s.
1 parent 2a9f778 commit 9a1d14c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

source/strings.tex

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -938,47 +938,47 @@
938938
allocator_type get_allocator() const noexcept;
939939

940940
template<class T>
941-
size_type find (const T& t, size_type pos = 0) const @noexcept(\seebelow)@;
941+
size_type find (const T& t, size_type pos = 0) const noexcept(@\seebelow@);
942942
size_type find (const basic_string& str, size_type pos = 0) const noexcept;
943943
size_type find (const charT* s, size_type pos, size_type n) const;
944944
size_type find (const charT* s, size_type pos = 0) const;
945-
size_type find (charT c, size_type pos = 0) const @noexcept@;
945+
size_type find (charT c, size_type pos = 0) const noexcept;
946946
template<class T>
947-
size_type rfind(const T& t, size_type pos = npos) const @noexcept(\seebelow)@;
947+
size_type rfind(const T& t, size_type pos = npos) const noexcept(@\seebelow@);
948948
size_type rfind(const basic_string& str, size_type pos = npos) const noexcept;
949949
size_type rfind(const charT* s, size_type pos, size_type n) const;
950950
size_type rfind(const charT* s, size_type pos = npos) const;
951-
size_type rfind(charT c, size_type pos = npos) const @noexcept@;
951+
size_type rfind(charT c, size_type pos = npos) const noexcept;
952952

953953
template<class T>
954-
size_type find_first_of(const T& t, size_type pos = 0) const @noexcept(\seebelow)@;
954+
size_type find_first_of(const T& t, size_type pos = 0) const noexcept(@\seebelow@);
955955
size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept;
956956
size_type find_first_of(const charT* s, size_type pos, size_type n) const;
957957
size_type find_first_of(const charT* s, size_type pos = 0) const;
958-
size_type find_first_of(charT c, size_type pos = 0) const @noexcept@;
958+
size_type find_first_of(charT c, size_type pos = 0) const noexcept;
959959
template<class T>
960-
size_type find_last_of (const T& t, size_type pos = npos) const @noexcept(\seebelow)@;
960+
size_type find_last_of (const T& t, size_type pos = npos) const noexcept(@\seebelow@);
961961
size_type find_last_of (const basic_string& str, size_type pos = npos) const noexcept;
962962
size_type find_last_of (const charT* s, size_type pos, size_type n) const;
963963
size_type find_last_of (const charT* s, size_type pos = npos) const;
964-
size_type find_last_of (charT c, size_type pos = npos) const @noexcept@;
964+
size_type find_last_of (charT c, size_type pos = npos) const noexcept;
965965

966966
template<class T>
967-
size_type find_first_not_of(const T& t, size_type pos = 0) const @noexcept(\seebelow)@;
967+
size_type find_first_not_of(const T& t, size_type pos = 0) const noexcept(@\seebelow@);
968968
size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept;
969969
size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;
970970
size_type find_first_not_of(const charT* s, size_type pos = 0) const;
971-
size_type find_first_not_of(charT c, size_type pos = 0) const @noexcept@;
971+
size_type find_first_not_of(charT c, size_type pos = 0) const noexcept;
972972
template<class T>
973-
size_type find_last_not_of (const T& t, size_type pos = npos) const @noexcept(\seebelow)@;
973+
size_type find_last_not_of (const T& t, size_type pos = npos) const noexcept(@\seebelow@);
974974
size_type find_last_not_of (const basic_string& str, size_type pos = npos) const noexcept;
975975
size_type find_last_not_of (const charT* s, size_type pos, size_type n) const;
976976
size_type find_last_not_of (const charT* s, size_type pos = npos) const;
977-
size_type find_last_not_of (charT c, size_type pos = npos) const @noexcept@;
977+
size_type find_last_not_of (charT c, size_type pos = npos) const noexcept;
978978

979979
basic_string substr(size_type pos = 0, size_type n = npos) const;
980980
template<class T>
981-
int compare(const T& t) const @noexcept(\seebelow)@;
981+
int compare(const T& t) const noexcept(@\seebelow@);
982982
template<class T>
983983
int compare(size_type pos1, size_type n1, const T& t) const;
984984
template<class T>
@@ -2894,7 +2894,7 @@
28942894
\indexlibrarymember{compare}{basic_string}%
28952895
\begin{itemdecl}
28962896
template<class T>
2897-
int compare(const T& t) const @noexcept(\seebelow)@;
2897+
int compare(const T& t) const noexcept(@\seebelow@);
28982898
\end{itemdecl}
28992899

29002900
\begin{itemdescr}

0 commit comments

Comments
 (0)