[libcxx-commits] [libcxx] 821513b - [libc++] Fix a missing include in pre-C++17 language modes.

Konstantin Varlamov via libcxx-commits libcxx-commits at lists.llvm.org
Thu Nov 17 16:53:17 PST 2022


Author: Konstantin Varlamov
Date: 2022-11-17T16:53:05-08:00
New Revision: 821513b1e663aa4523ee85a92c37e322112a3cd7

URL: https://github.com/llvm/llvm-project/commit/821513b1e663aa4523ee85a92c37e322112a3cd7
DIFF: https://github.com/llvm/llvm-project/commit/821513b1e663aa4523ee85a92c37e322112a3cd7.diff

LOG: [libc++] Fix a missing include in pre-C++17 language modes.

Added: 
    

Modified: 
    libcxx/include/__type_traits/noexcept_move_assign_container.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__type_traits/noexcept_move_assign_container.h b/libcxx/include/__type_traits/noexcept_move_assign_container.h
index f8edd76fc8c6e..35b0e51ba4024 100644
--- a/libcxx/include/__type_traits/noexcept_move_assign_container.h
+++ b/libcxx/include/__type_traits/noexcept_move_assign_container.h
@@ -12,6 +12,7 @@
 #include <__config>
 #include <__memory/allocator_traits.h>
 #include <__type_traits/integral_constant.h>
+#include <__type_traits/is_nothrow_move_assignable.h>
 
 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
 #  pragma GCC system_header


        


More information about the libcxx-commits mailing list