File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ typedef __char32_t char32_t;
545545// be declared with _LIBCPP_HIDE_FROM_ABI_AFTER_V1 otherwise they build to DLL will be inaccessible by MinGW-GCC.
546546// // ** in-progress: describe peculiar behavior of MinGW-GCC **
547547# if defined(__MINGW32__) || defined(__CYGWIN__)
548- # define _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 inline _LIBCPP_HIDE_FROM_ABI
548+ # define _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 _LIBCPP_HIDE_FROM_ABI
549549# else
550550# define _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 _LIBCPP_HIDE_FROM_ABI_AFTER_V1
551551# endif
Original file line number Diff line number Diff line change @@ -186,8 +186,8 @@ class basic_ostream<_CharT, _Traits>::sentry {
186186 basic_ostream<_CharT, _Traits>& __os_;
187187
188188public:
189- explicit _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 sentry (basic_ostream<_CharT, _Traits>& __os);
190- _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 ~sentry ();
189+ explicit inline _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 sentry (basic_ostream<_CharT, _Traits>& __os);
190+ inline _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 ~sentry ();
191191 sentry (const sentry&) = delete ;
192192 sentry& operator =(const sentry&) = delete ;
193193
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ class basic_istream<_CharT, _Traits>::sentry {
309309 bool __ok_;
310310
311311public:
312- explicit _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 sentry (basic_istream<_CharT, _Traits>& __is, bool __noskipws = false );
312+ explicit inline _LIBCPP_HIDE_FROM_ABI_MINGW_OR_AFTER_V1 sentry (basic_istream<_CharT, _Traits>& __is, bool __noskipws = false );
313313 // ~sentry() = default;
314314
315315 _LIBCPP_HIDE_FROM_ABI explicit operator bool () const { return __ok_; }
You can’t perform that action at this time.
0 commit comments