Changeset 7bbf91e in mainline for uspace/lib/cpp/include/__bits
- 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
- Files:
-
- 57 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/abi.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #include <cstddef> 29 30 #include <cstdint> 30 31 #include <typeinfo> -
uspace/lib/cpp/include/__bits/builtins.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_BUILTINS30 #define LIBCPP_ INTERNAL_BUILTINS29 #ifndef LIBCPP_BITS_BUILTINS 30 #define LIBCPP_BITS_BUILTINS 31 31 32 32 /** -
uspace/lib/cpp/include/__bits/common.hpp
rfc15120 r7bbf91e 1 #ifndef LIBCPP_ INTERNAL_COMMON2 #define LIBCPP_ INTERNAL_COMMON1 #ifndef LIBCPP_BITS_COMMON 2 #define LIBCPP_BITS_COMMON 3 3 4 4 /** -
uspace/lib/cpp/include/__bits/functional/arithmetic_operations.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTIONAL_ARITHMETIC_OPERATIONS30 #define LIBCPP_ INTERNAL_FUNCTIONAL_ARITHMETIC_OPERATIONS31 32 #include < internal/utility/forward_move.hpp>29 #ifndef LIBCPP_BITS_FUNCTIONAL_ARITHMETIC_OPERATIONS 30 #define LIBCPP_BITS_FUNCTIONAL_ARITHMETIC_OPERATIONS 31 32 #include <__bits/utility/forward_move.hpp> 33 33 #include <type_traits> 34 34 -
uspace/lib/cpp/include/__bits/functional/bind.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTIONAL_BIND30 #define LIBCPP_ INTERNAL_FUNCTIONAL_BIND31 32 #include < internal/functional/function.hpp>33 #include < internal/functional/invoke.hpp>34 #include < internal/functional/reference_wrapper.hpp>29 #ifndef LIBCPP_BITS_FUNCTIONAL_BIND 30 #define LIBCPP_BITS_FUNCTIONAL_BIND 31 32 #include <__bits/functional/function.hpp> 33 #include <__bits/functional/invoke.hpp> 34 #include <__bits/functional/reference_wrapper.hpp> 35 35 #include <tuple> 36 36 #include <type_traits> -
uspace/lib/cpp/include/__bits/functional/conditional_function_typedefs.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTION_CONDITIONAL_FUNCTION_TYPEDEFS30 #define LIBCPP_ INTERNAL_FUNCTION_CONDITIONAL_FUNCTION_TYPEDEFS29 #ifndef LIBCPP_BITS_FUNCTION_CONDITIONAL_FUNCTION_TYPEDEFS 30 #define LIBCPP_BITS_FUNCTION_CONDITIONAL_FUNCTION_TYPEDEFS 31 31 32 32 namespace std::aux -
uspace/lib/cpp/include/__bits/functional/function.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTIONAL_FUNCTION30 #define LIBCPP_ INTERNAL_FUNCTIONAL_FUNCTION31 32 #include < internal/functional/conditional_function_typedefs.hpp>33 #include < internal/functional/reference_wrapper.hpp>29 #ifndef LIBCPP_BITS_FUNCTIONAL_FUNCTION 30 #define LIBCPP_BITS_FUNCTIONAL_FUNCTION 31 32 #include <__bits/functional/conditional_function_typedefs.hpp> 33 #include <__bits/functional/reference_wrapper.hpp> 34 34 #include <typeinfo> 35 35 #include <type_traits> -
uspace/lib/cpp/include/__bits/functional/hash.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTIONAL_HASH30 #define LIBCPP_ INTERNAL_FUNCTIONAL_HASH29 #ifndef LIBCPP_BITS_FUNCTIONAL_HASH 30 #define LIBCPP_BITS_FUNCTIONAL_HASH 31 31 32 32 #include <cstdlib> -
uspace/lib/cpp/include/__bits/functional/invoke.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTIONAL_INVOKE30 #define LIBCPP_ INTERNAL_FUNCTIONAL_INVOKE29 #ifndef LIBCPP_BITS_FUNCTIONAL_INVOKE 30 #define LIBCPP_BITS_FUNCTIONAL_INVOKE 31 31 32 #include < internal/utility/declval.hpp>33 #include < internal/utility/forward_move.hpp>32 #include <__bits/utility/declval.hpp> 33 #include <__bits/utility/forward_move.hpp> 34 34 35 35 namespace std -
uspace/lib/cpp/include/__bits/functional/reference_wrapper.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_FUNCTIONAL_REFERENCE_WRAPPER30 #define LIBCPP_ INTERNAL_FUNCTIONAL_REFERENCE_WRAPPER29 #ifndef LIBCPP_BITS_FUNCTIONAL_REFERENCE_WRAPPER 30 #define LIBCPP_BITS_FUNCTIONAL_REFERENCE_WRAPPER 31 31 32 #include < internal/functional/conditional_function_typedefs.hpp>33 #include < internal/functional/invoke.hpp>32 #include <__bits/functional/conditional_function_typedefs.hpp> 33 #include <__bits/functional/invoke.hpp> 34 34 #include <type_traits> 35 35 -
uspace/lib/cpp/include/__bits/hash_table.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_HASH_TABLE30 #define LIBCPP_ INTERNAL_HASH_TABLE29 #ifndef LIBCPP_BITS_HASH_TABLE 30 #define LIBCPP_BITS_HASH_TABLE 31 31 32 32 #include <cstdlib> 33 #include < internal/list.hpp>34 #include < internal/key_extractors.hpp>35 #include < internal/hash_table_iterators.hpp>36 #include < internal/hash_table_policies.hpp>33 #include <__bits/list.hpp> 34 #include <__bits/key_extractors.hpp> 35 #include <__bits/hash_table_iterators.hpp> 36 #include <__bits/hash_table_policies.hpp> 37 37 #include <iterator> 38 38 #include <limits> -
uspace/lib/cpp/include/__bits/hash_table_bucket.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_HASH_TABLE_BUCKET30 #define LIBCPP_ INTERNAL_HASH_TABLE_BUCKET29 #ifndef LIBCPP_BITS_HASH_TABLE_BUCKET 30 #define LIBCPP_BITS_HASH_TABLE_BUCKET 31 31 32 #include < internal/list.hpp>32 #include <__bits/list.hpp> 33 33 34 34 namespace std::aux -
uspace/lib/cpp/include/__bits/hash_table_iterators.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_HASH_TABLE_ITERATORS30 #define LIBCPP_ INTERNAL_HASH_TABLE_ITERATORS31 32 #include < internal/iterator.hpp>33 #include < internal/list.hpp>34 #include < internal/hash_table_bucket.hpp>29 #ifndef LIBCPP_BITS_HASH_TABLE_ITERATORS 30 #define LIBCPP_BITS_HASH_TABLE_ITERATORS 31 32 #include <__bits/iterator.hpp> 33 #include <__bits/list.hpp> 34 #include <__bits/hash_table_bucket.hpp> 35 35 #include <iterator> 36 36 -
uspace/lib/cpp/include/__bits/hash_table_policies.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_HASH_TABLE_POLICIES30 #define LIBCPP_ INTERNAL_HASH_TABLE_POLICIES29 #ifndef LIBCPP_BITS_HASH_TABLE_POLICIES 30 #define LIBCPP_BITS_HASH_TABLE_POLICIES 31 31 32 32 #include <tuple> -
uspace/lib/cpp/include/__bits/insert_iterator.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_INSERT_ITERATOR30 #define LIBCPP_ INTERNAL_INSERT_ITERATOR29 #ifndef LIBCPP_BITS_INSERT_ITERATOR 30 #define LIBCPP_BITS_INSERT_ITERATOR 31 31 32 32 namespace std -
uspace/lib/cpp/include/__bits/iomanip.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_IOMANIP30 #define LIBCPP_ INTERNAL_IOMANIP29 #ifndef LIBCPP_BITS_IOMANIP 30 #define LIBCPP_BITS_IOMANIP 31 31 32 32 #include <ios> -
uspace/lib/cpp/include/__bits/iterator.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_ITERATOR30 #define LIBCPP_ INTERNAL_ITERATOR29 #ifndef LIBCPP_BITS_ITERATOR 30 #define LIBCPP_BITS_ITERATOR 31 31 32 #include < internal/aux.hpp>32 #include <__bits/aux.hpp> 33 33 34 34 namespace std::aux -
uspace/lib/cpp/include/__bits/key_extractors.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_KEY_EXTRACTORS30 #define LIBCPP_ INTERNAL_KEY_EXTRACTORS29 #ifndef LIBCPP_BITS_KEY_EXTRACTORS 30 #define LIBCPP_BITS_KEY_EXTRACTORS 31 31 32 32 #include <utility> -
uspace/lib/cpp/include/__bits/list.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LIST30 #define LIBCPP_ INTERNAL_LIST29 #ifndef LIBCPP_BITS_LIST 30 #define LIBCPP_BITS_LIST 31 31 32 32 namespace std::aux -
uspace/lib/cpp/include/__bits/locale.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LOCALE30 #define LIBCPP_ INTERNAL_LOCALE29 #ifndef LIBCPP_BITS_LOCALE 30 #define LIBCPP_BITS_LOCALE 31 31 32 32 #include <impl/string.hpp> -
uspace/lib/cpp/include/__bits/locale/codecvt.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LOCALE_CODECVT30 #define LIBCPP_ INTERNAL_LOCALE_CODECVT29 #ifndef LIBCPP_BITS_LOCALE_CODECVT 30 #define LIBCPP_BITS_LOCALE_CODECVT 31 31 32 32 #include <intetnal/locale.hpp> -
uspace/lib/cpp/include/__bits/locale/ctype.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LOCALE_CTYPE30 #define LIBCPP_ INTERNAL_LOCALE_CTYPE29 #ifndef LIBCPP_BITS_LOCALE_CTYPE 30 #define LIBCPP_BITS_LOCALE_CTYPE 31 31 32 32 #include <cctype> 33 #include < internal/locale.hpp>33 #include <__bits/locale.hpp> 34 34 #include <impl/string.hpp> 35 35 -
uspace/lib/cpp/include/__bits/locale/num_get.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LOCALE_NUM_GET30 #define LIBCPP_ INTERNAL_LOCALE_NUM_GET29 #ifndef LIBCPP_BITS_LOCALE_NUM_GET 30 #define LIBCPP_BITS_LOCALE_NUM_GET 31 31 32 32 #include <cerrno> 33 33 #include <cstring> 34 #include < internal/locale.hpp>35 #include < internal/locale/numpunct.hpp>34 #include <__bits/locale.hpp> 35 #include <__bits/locale/numpunct.hpp> 36 36 #include <ios> 37 37 #include <iterator> -
uspace/lib/cpp/include/__bits/locale/num_put.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LOCALE_NUM_PUT30 #define LIBCPP_ INTERNAL_LOCALE_NUM_PUT31 32 #include < internal/locale.hpp>33 #include < internal/locale/numpunct.hpp>29 #ifndef LIBCPP_BITS_LOCALE_NUM_PUT 30 #define LIBCPP_BITS_LOCALE_NUM_PUT 31 32 #include <__bits/locale.hpp> 33 #include <__bits/locale/numpunct.hpp> 34 34 #include <ios> 35 35 #include <iterator> -
uspace/lib/cpp/include/__bits/locale/numpunct.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_LOCALE_NUMPUNCT30 #define LIBCPP_ INTERNAL_LOCALE_NUMPUNCT31 32 #include < internal/locale.hpp>29 #ifndef LIBCPP_BITS_LOCALE_NUMPUNCT 30 #define LIBCPP_BITS_LOCALE_NUMPUNCT 31 32 #include <__bits/locale.hpp> 33 33 #include <string> 34 34 -
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> -
uspace/lib/cpp/include/__bits/rbtree.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_RBTREE30 #define LIBCPP_ INTERNAL_RBTREE31 32 #include < internal/key_extractors.hpp>33 #include < internal/rbtree_iterators.hpp>34 #include < internal/rbtree_node.hpp>35 #include < internal/rbtree_policies.hpp>29 #ifndef LIBCPP_BITS_RBTREE 30 #define LIBCPP_BITS_RBTREE 31 32 #include <__bits/key_extractors.hpp> 33 #include <__bits/rbtree_iterators.hpp> 34 #include <__bits/rbtree_node.hpp> 35 #include <__bits/rbtree_policies.hpp> 36 36 37 37 namespace std::aux -
uspace/lib/cpp/include/__bits/rbtree_iterators.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_RBTREE_ITERATORS30 #define LIBCPP_ INTERNAL_RBTREE_ITERATORS31 32 #include < internal/iterator.hpp>33 #include < internal/rbtree_node.hpp>29 #ifndef LIBCPP_BITS_RBTREE_ITERATORS 30 #define LIBCPP_BITS_RBTREE_ITERATORS 31 32 #include <__bits/iterator.hpp> 33 #include <__bits/rbtree_node.hpp> 34 34 #include <iterator> 35 35 -
uspace/lib/cpp/include/__bits/rbtree_node.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_RBTREE_NODE30 #define LIBCPP_ INTERNAL_RBTREE_NODE29 #ifndef LIBCPP_BITS_RBTREE_NODE 30 #define LIBCPP_BITS_RBTREE_NODE 31 31 32 32 #include <cassert> -
uspace/lib/cpp/include/__bits/rbtree_policies.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_RBTREE_POLICIES30 #define LIBCPP_ INTERNAL_RBTREE_POLICIES31 32 #include < internal/rbtree_node.hpp>29 #ifndef LIBCPP_BITS_RBTREE_POLICIES 30 #define LIBCPP_BITS_RBTREE_POLICIES 31 32 #include <__bits/rbtree_node.hpp> 33 33 #include <utility> 34 34 -
uspace/lib/cpp/include/__bits/result_of.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_RESULT_OF30 #define LIBCPP_ INTERNAL_RESULT_OF29 #ifndef LIBCPP_BITS_RESULT_OF 30 #define LIBCPP_BITS_RESULT_OF 31 31 32 #include < internal/invoke.hpp>32 #include <__bits/invoke.hpp> 33 33 34 34 namespace std -
uspace/lib/cpp/include/__bits/string.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_STRING30 #define LIBCPP_ INTERNAL_STRING29 #ifndef LIBCPP_BITS_STRING 30 #define LIBCPP_BITS_STRING 31 31 32 32 #include <ios> -
uspace/lib/cpp/include/__bits/stringfwd.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_STRINGFWD30 #define LIBCPP_ INTERNAL_STRINGFWD29 #ifndef LIBCPP_BITS_STRINGFWD 30 #define LIBCPP_BITS_STRINGFWD 31 31 32 32 namespace std -
uspace/lib/cpp/include/__bits/test/mock.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TEST_MOCK30 #define LIBCPP_ INTERNAL_TEST_MOCK29 #ifndef LIBCPP_BITS_TEST_MOCK 30 #define LIBCPP_BITS_TEST_MOCK 31 31 32 32 #include <cstdlib> -
uspace/lib/cpp/include/__bits/test/tests.hpp
rfc15120 r7bbf91e 31 31 32 32 #include <cstdio> 33 #include < internal/test/test.hpp>33 #include <__bits/test/test.hpp> 34 34 #include <vector> 35 35 -
uspace/lib/cpp/include/__bits/thread.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_THREAD30 #define LIBCPP_ INTERNAL_THREAD29 #ifndef LIBCPP_BITS_THREAD 30 #define LIBCPP_BITS_THREAD 31 31 32 32 namespace std::hel -
uspace/lib/cpp/include/__bits/trycatch.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TRYCATCH30 #define LIBCPP_ INTERNAL_TRYCATCH29 #ifndef LIBCPP_BITS_TRYCATCH 30 #define LIBCPP_BITS_TRYCATCH 31 31 32 32 // TODO: This header should be included in every libcpp header. … … 45 45 #if LIBCPP_EXCEPTIONS_SUPPORTED == 0 46 46 47 /** 48 * In case the file where our macros get expanded 49 * does not include cstdlib. 50 */ 51 extern "C" void abort(void) __attribute__((noreturn)); 52 extern "C" int printf(const char*, ...); 53 47 54 namespace std 48 55 { 49 /**50 * In case the file where our macros get expanded51 * does not include cstdlib.52 */53 extern "C" void abort(void) __attribute__((noreturn));54 extern "C" int printf(const char*, ...);55 56 56 namespace aux 57 57 { -
uspace/lib/cpp/include/__bits/tuple/tuple_cat.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TUPLE_TUPLE_CAT30 #define LIBCPP_ INTERNAL_TUPLE_TUPLE_CAT29 #ifndef LIBCPP_BITS_TUPLE_TUPLE_CAT 30 #define LIBCPP_BITS_TUPLE_TUPLE_CAT 31 31 32 32 #include <utility> -
uspace/lib/cpp/include/__bits/tuple/tuple_ops.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TUPLE_TUPLE_OPS30 #define LIBCPP_ INTERNAL_TUPLE_TUPLE_OPS29 #ifndef LIBCPP_BITS_TUPLE_TUPLE_OPS 30 #define LIBCPP_BITS_TUPLE_TUPLE_OPS 31 31 32 32 #include <utility> -
uspace/lib/cpp/include/__bits/type_traits/references.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TYPE_TRAITS_REFERENCES30 #define LIBCPP_ INTERNAL_TYPE_TRAITS_REFERENCES29 #ifndef LIBCPP_BITS_TYPE_TRAITS_REFERENCES 30 #define LIBCPP_BITS_TYPE_TRAITS_REFERENCES 31 31 32 #include < internal/aux.hpp>32 #include <__bits/aux.hpp> 33 33 34 34 namespace std -
uspace/lib/cpp/include/__bits/type_traits/result_of.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TYPE_TRAITS_RESULT_OF30 #define LIBCPP_ INTERNAL_TYPE_TRAITS_RESULT_OF29 #ifndef LIBCPP_BITS_TYPE_TRAITS_RESULT_OF 30 #define LIBCPP_BITS_TYPE_TRAITS_RESULT_OF 31 31 32 #include < internal/functional/invoke.hpp>32 #include <__bits/functional/invoke.hpp> 33 33 34 34 namespace std -
uspace/lib/cpp/include/__bits/type_transformation.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_TYPE_TRANSFORMATION30 #define LIBCPP_ INTERNAL_TYPE_TRANSFORMATION29 #ifndef LIBCPP_BITS_TYPE_TRANSFORMATION 30 #define LIBCPP_BITS_TYPE_TRANSFORMATION 31 31 32 #include < internal/aux.hpp>32 #include <__bits/aux.hpp> 33 33 #include <type_traits> 34 34 -
uspace/lib/cpp/include/__bits/utility/declval.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_UTILITY_DECLVAL30 #define LIBCPP_ INTERNAL_UTILITY_DECLVAL29 #ifndef LIBCPP_BITS_UTILITY_DECLVAL 30 #define LIBCPP_BITS_UTILITY_DECLVAL 31 31 32 #include < internal/type_traits/references.hpp>32 #include <__bits/type_traits/references.hpp> 33 33 34 34 namespace std -
uspace/lib/cpp/include/__bits/utility/forward_move.hpp
rfc15120 r7bbf91e 27 27 */ 28 28 29 #ifndef LIBCPP_ INTERNAL_UTILITY_FORWARD_MOVE30 #define LIBCPP_ INTERNAL_UTILITY_FORWARD_MOVE29 #ifndef LIBCPP_BITS_UTILITY_FORWARD_MOVE 30 #define LIBCPP_BITS_UTILITY_FORWARD_MOVE 31 31 32 #include < internal/type_traits/references.hpp>32 #include <__bits/type_traits/references.hpp> 33 33 34 34 namespace std
Note:
See TracChangeset
for help on using the changeset viewer.