Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libcxx/include/__fwd/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ _LIBCPP_BEGIN_NAMESPACE_STD
template <class _Tp>
class _LIBCPP_TEMPLATE_VIS allocator;

template <class _Tp>
class _LIBCPP_TEMPLATE_VIS shared_ptr;

_LIBCPP_END_NAMESPACE_STD

#endif // _LIBCPP___FWD_MEMORY_H
2 changes: 1 addition & 1 deletion libcxx/include/__ostream/basic_ostream.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#if _LIBCPP_HAS_LOCALIZATION

# include <__exception/operations.h>
# include <__memory/shared_ptr.h>
# include <__fwd/memory.h>
# include <__memory/unique_ptr.h>
# include <__new/exceptions.h>
# include <__ostream/put_character_sequence.h>
Expand Down
Loading