Skip to content

Commit 1fa64b8

Browse files
Clean up public headers a little
1 parent 7c3d41e commit 1fa64b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__stacktrace/basic_stacktrace.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,20 +275,20 @@ using stacktrace = basic_stacktrace<polymorphic_allocator<stacktrace_entry>>;
275275
// Non-member functions [stacktrace.basic.nonmem]
276276

277277
template <class _Allocator>
278-
_LIBCPP_HIDE_FROM_ABI inline void
278+
_LIBCPP_HIDE_FROM_ABI void
279279
swap(basic_stacktrace<_Allocator>& __a, basic_stacktrace<_Allocator>& __b) noexcept(noexcept(__a.swap(__b))) {
280280
__a.swap(__b);
281281
}
282282

283283
# if _LIBCPP_HAS_LOCALIZATION
284284

285285
template <class _Allocator>
286-
_LIBCPP_HIDE_FROM_ABI inline string to_string(const basic_stacktrace<_Allocator>& __stacktrace) {
286+
_LIBCPP_HIDE_FROM_ABI string to_string(const basic_stacktrace<_Allocator>& __stacktrace) {
287287
return ((__stacktrace::_Trace const&)__stacktrace).to_string();
288288
}
289289

290290
template <class _Allocator>
291-
_LIBCPP_HIDE_FROM_ABI inline ostream& operator<<(ostream& __os, const basic_stacktrace<_Allocator>& __stacktrace) {
291+
_LIBCPP_HIDE_FROM_ABI ostream& operator<<(ostream& __os, const basic_stacktrace<_Allocator>& __stacktrace) {
292292
return ((__stacktrace::_Trace const&)__stacktrace).write_to(__os);
293293
}
294294

0 commit comments

Comments
 (0)