Skip to content

Commit 273627e

Browse files
jensmaurertkoeppe
authored andcommitted
LWG3540 [format.arg] There should be no const in basic_format_arg(const T* p)
1 parent cf4caae commit 273627e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/utilities.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20650,7 +20650,7 @@
2065020650
explicit basic_format_arg(nullptr_t) noexcept; // \expos
2065120651

2065220652
template<class T>
20653-
explicit basic_format_arg(const T* p) noexcept; // \expos
20653+
explicit basic_format_arg(T* p) noexcept; // \expos
2065420654

2065520655
public:
2065620656
basic_format_arg() noexcept;
@@ -20795,7 +20795,7 @@
2079520795
\end{itemdescr}
2079620796

2079720797
\begin{itemdecl}
20798-
template<class T> explicit basic_format_arg(const T* p) noexcept;
20798+
template<class T> explicit basic_format_arg(T* p) noexcept;
2079920799
\end{itemdecl}
2080020800

2080120801
\begin{itemdescr}

0 commit comments

Comments
 (0)