Skip to content

Commit 5fc4702

Browse files
committed
Removed _LIBCPP_TEMPLATE_VIS as of llvm#134885
and llvm#133233
1 parent 0ad6f34 commit 5fc4702

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

libcxx/include/__fwd/spanstream.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ _LIBCPP_BEGIN_NAMESPACE_STD
2121
#if _LIBCPP_STD_VER >= 23
2222

2323
template <class _CharT, class _Traits = char_traits<_CharT>>
24-
class _LIBCPP_TEMPLATE_VIS basic_spanbuf;
24+
class basic_spanbuf;
2525
template <class _CharT, class _Traits = char_traits<_CharT>>
26-
class _LIBCPP_TEMPLATE_VIS basic_ispanstream;
26+
class basic_ispanstream;
2727
template <class _CharT, class _Traits = char_traits<_CharT>>
28-
class _LIBCPP_TEMPLATE_VIS basic_ospanstream;
28+
class basic_ospanstream;
2929
template <class _CharT, class _Traits = char_traits<_CharT>>
30-
class _LIBCPP_TEMPLATE_VIS basic_spanstream;
30+
class basic_spanstream;
3131

3232
using spanbuf = basic_spanbuf<char>;
3333
using ispanstream = basic_ispanstream<char>;

libcxx/include/spanstream

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
9090
// Class template basic_spanbuf [spanbuf]
9191

9292
template <class _CharT, class _Traits>
93-
class _LIBCPP_TEMPLATE_VIS basic_spanbuf : public basic_streambuf<_CharT, _Traits> {
93+
class basic_spanbuf : public basic_streambuf<_CharT, _Traits> {
9494
public:
9595
using char_type = _CharT;
9696
using int_type = typename _Traits::int_type;
@@ -254,7 +254,7 @@ using std::wspanbuf;
254254
// Class template basic_ispanstream [ispanstream]
255255

256256
template <class _CharT, class _Traits>
257-
class _LIBCPP_TEMPLATE_VIS basic_ispanstream : public basic_istream<_CharT, _Traits> {
257+
class basic_ispanstream : public basic_istream<_CharT, _Traits> {
258258
public:
259259
using char_type = _CharT;
260260
using int_type = typename _Traits::int_type;
@@ -332,7 +332,7 @@ using std::wispanstream;
332332
// Class template basic_ospanstream [ospanstream]
333333

334334
template <class _CharT, class _Traits>
335-
class _LIBCPP_TEMPLATE_VIS basic_ospanstream : public basic_ostream<_CharT, _Traits> {
335+
class basic_ospanstream : public basic_ostream<_CharT, _Traits> {
336336
public:
337337
using char_type = _CharT;
338338
using int_type = typename _Traits::int_type;
@@ -393,7 +393,7 @@ using std::wospanstream;
393393
# endif
394394

395395
template <class _CharT, class _Traits>
396-
class _LIBCPP_TEMPLATE_VIS basic_spanstream : public basic_iostream<_CharT, _Traits> {
396+
class basic_spanstream : public basic_iostream<_CharT, _Traits> {
397397
public:
398398
using char_type = _CharT;
399399
using int_type = typename _Traits::int_type;

0 commit comments

Comments
 (0)