Changeset 7bbf91e in mainline for uspace/lib/cpp/include/__bits/memory
- Timestamp:
- 2018-07-05T21:41:24Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2e53e83d
- Parents:
- fc15120
- git-author:
- Dzejrou <dzejrou@…> (2018-05-16 18:35:17)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
- Location:
- uspace/lib/cpp/include/__bits/memory
- Files:
-
- 11 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/memory/addressof.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_ADDRESSOF30 #define LIBCPP_ INTERNAL_MEMORY_ADDRESSOF29 #ifndef LIBCPP_BITS_MEMORY_ADDRESSOF 30 #define LIBCPP_BITS_MEMORY_ADDRESSOF 31 31 32 32 namespace std -
uspace/lib/cpp/include/__bits/memory/allocator_arg.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_ALLOCATOR_ARG30 #define LIBCPP_ INTERNAL_MEMORY_ALLOCATOR_ARG29 #ifndef LIBCPP_BITS_MEMORY_ALLOCATOR_ARG 30 #define LIBCPP_BITS_MEMORY_ALLOCATOR_ARG 31 31 32 32 namespace std -
uspace/lib/cpp/include/__bits/memory/allocator_traits.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_ALLOCATOR_TRAITS30 #define LIBCPP_ INTERNAL_MEMORY_ALLOCATOR_TRAITS29 #ifndef LIBCPP_BITS_MEMORY_ALLOCATOR_TRAITS 30 #define LIBCPP_BITS_MEMORY_ALLOCATOR_TRAITS 31 31 32 32 #include <cstddef> 33 #include < internal/aux.hpp>34 #include < internal/memory/addressof.hpp>35 #include < internal/memory/pointer_traits.hpp>36 #include < internal/memory/type_getters.hpp>33 #include <__bits/aux.hpp> 34 #include <__bits/memory/addressof.hpp> 35 #include <__bits/memory/pointer_traits.hpp> 36 #include <__bits/memory/type_getters.hpp> 37 37 #include <limits> 38 38 #include <type_traits> -
uspace/lib/cpp/include/__bits/memory/misc.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_MISC30 #define LIBCPP_ INTERNAL_MEMORY_MISC29 #ifndef LIBCPP_BITS_MEMORY_MISC 30 #define LIBCPP_BITS_MEMORY_MISC 31 31 32 32 #include <cstdlib> -
uspace/lib/cpp/include/__bits/memory/owner_less.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_OWNER_LESS30 #define LIBCPP_ INTERNAL_MEMORY_OWNER_LESS29 #ifndef LIBCPP_BITS_MEMORY_OWNER_LESS 30 #define LIBCPP_BITS_MEMORY_OWNER_LESS 31 31 32 #include < internal/memory/shared_ptr.hpp>33 #include < internal/memory/weak_ptr.hpp>32 #include <__bits/memory/shared_ptr.hpp> 33 #include <__bits/memory/weak_ptr.hpp> 34 34 35 35 namespace std -
uspace/lib/cpp/include/__bits/memory/pointer_traits.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_POINTER_TRAITS30 #define LIBCPP_ INTERNAL_MEMORY_POINTER_TRAITS29 #ifndef LIBCPP_BITS_MEMORY_POINTER_TRAITS 30 #define LIBCPP_BITS_MEMORY_POINTER_TRAITS 31 31 32 32 #include <cstddef> 33 #include < internal/memory/addressof.hpp>34 #include < internal/memory/type_getters.hpp>33 #include <__bits/memory/addressof.hpp> 34 #include <__bits/memory/type_getters.hpp> 35 35 #include <type_traits> 36 36 -
uspace/lib/cpp/include/__bits/memory/shared_payload.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_SHARED_PAYLOAD30 #define LIBCPP_ INTERNAL_MEMORY_SHARED_PAYLOAD29 #ifndef LIBCPP_BITS_MEMORY_SHARED_PAYLOAD 30 #define LIBCPP_BITS_MEMORY_SHARED_PAYLOAD 31 31 32 32 #include <cinttypes> -
uspace/lib/cpp/include/__bits/memory/shared_ptr.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_SHARED_PTR30 #define LIBCPP_ INTERNAL_MEMORY_SHARED_PTR29 #ifndef LIBCPP_BITS_MEMORY_SHARED_PTR 30 #define LIBCPP_BITS_MEMORY_SHARED_PTR 31 31 32 32 #include <exception> 33 #include < internal/functional/arithmetic_operations.hpp>34 #include < internal/functional/hash.hpp>35 #include < internal/memory/allocator_arg.hpp>36 #include < internal/memory/shared_payload.hpp>37 #include < internal/memory/unique_ptr.hpp>38 #include < internal/trycatch.hpp>33 #include <__bits/functional/arithmetic_operations.hpp> 34 #include <__bits/functional/hash.hpp> 35 #include <__bits/memory/allocator_arg.hpp> 36 #include <__bits/memory/shared_payload.hpp> 37 #include <__bits/memory/unique_ptr.hpp> 38 #include <__bits/trycatch.hpp> 39 39 #include <type_traits> 40 40 -
uspace/lib/cpp/include/__bits/memory/type_getters.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_TYPE_GETTERS30 #define LIBCPP_ INTERNAL_MEMORY_TYPE_GETTERS29 #ifndef LIBCPP_BITS_MEMORY_TYPE_GETTERS 30 #define LIBCPP_BITS_MEMORY_TYPE_GETTERS 31 31 32 32 /** … … 40 40 41 41 #include <cstddef> 42 #include < internal/aux.hpp>42 #include <__bits/aux.hpp> 43 43 #include <type_traits> 44 44 -
uspace/lib/cpp/include/__bits/memory/unique_ptr.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_UNIQUE_PTR30 #define LIBCPP_ INTERNAL_MEMORY_UNIQUE_PTR31 32 #include < internal/aux.hpp>33 #include < internal/functional/hash.hpp>29 #ifndef LIBCPP_BITS_MEMORY_UNIQUE_PTR 30 #define LIBCPP_BITS_MEMORY_UNIQUE_PTR 31 32 #include <__bits/aux.hpp> 33 #include <__bits/functional/hash.hpp> 34 34 #include <type_traits> 35 35 #include <utility> -
uspace/lib/cpp/include/__bits/memory/weak_ptr.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_MEMORY_WEAK_PTR30 #define LIBCPP_ INTERNAL_MEMORY_WEAK_PTR31 32 #include < internal/memory/shared_payload.hpp>29 #ifndef LIBCPP_BITS_MEMORY_WEAK_PTR 30 #define LIBCPP_BITS_MEMORY_WEAK_PTR 31 32 #include <__bits/memory/shared_payload.hpp> 33 33 #include <type_traits> 34 34 #include <utility>
Note:
See TracChangeset
for help on using the changeset viewer.