├── README.md ├── constexpr_allocator.pro ├── include ├── CMakeLists.txt ├── __bit_reference ├── __bsd_locale_defaults.h ├── __bsd_locale_fallbacks.h ├── __config ├── __config_site.in ├── __debug ├── __functional_03 ├── __functional_base ├── __functional_base_03 ├── __hash_table ├── __libcpp_version ├── __locale ├── __mutex_base ├── __nullptr ├── __refstring ├── __split_buffer ├── __sso_allocator ├── __std_stream ├── __string ├── __threading_support ├── __tree ├── __tuple ├── __undef_min_max ├── algorithm ├── any ├── array ├── atomic ├── bitset ├── cassert ├── ccomplex ├── cctype ├── cerrno ├── cfenv ├── cfloat ├── chrono ├── cinttypes ├── ciso646 ├── climits ├── clocale ├── cmath ├── codecvt ├── complex ├── complex.h ├── condition_variable ├── csetjmp ├── csignal ├── cstdarg ├── cstdbool ├── cstddef ├── cstdint ├── cstdio ├── cstdlib ├── cstring ├── ctgmath ├── ctime ├── ctype.h ├── cwchar ├── cwctype ├── deque ├── errno.h ├── exception ├── experimental │ ├── __config │ ├── __memory │ ├── algorithm │ ├── any │ ├── chrono │ ├── deque │ ├── dynarray │ ├── filesystem │ ├── forward_list │ ├── functional │ ├── iterator │ ├── list │ ├── map │ ├── memory_resource │ ├── numeric │ ├── optional │ ├── propagate_const │ ├── ratio │ ├── regex │ ├── set │ ├── string │ ├── string_view │ ├── system_error │ ├── tuple │ ├── type_traits │ ├── unordered_map │ ├── unordered_set │ ├── utility │ └── vector ├── ext │ ├── __hash │ ├── hash_map │ └── hash_set ├── float.h ├── forward_list ├── fstream ├── functional ├── future ├── initializer_list ├── inttypes.h ├── iomanip ├── ios ├── iosfwd ├── iostream ├── istream ├── iterator ├── limits ├── limits.h ├── list ├── locale ├── locale.h ├── map ├── math.h ├── memory ├── modif___split_buffer ├── modif_memory ├── modif_new_destroyer ├── modif_string ├── modif_vector ├── module.modulemap ├── mutex ├── new ├── numeric ├── optional ├── ostream ├── queue ├── random ├── ratio ├── regex ├── scoped_allocator ├── set ├── setjmp.h ├── shared_mutex ├── sstream ├── stack ├── stdbool.h ├── stddef.h ├── stdexcept ├── stdint.h ├── stdio.h ├── stdlib.h ├── streambuf ├── string ├── string.h ├── string_view ├── strstream ├── support │ ├── android │ │ └── locale_bionic.h │ ├── ibm │ │ ├── limits.h │ │ ├── locale_mgmt_aix.h │ │ ├── support.h │ │ └── xlocale.h │ ├── musl │ │ └── xlocale.h │ ├── newlib │ │ └── xlocale.h │ ├── solaris │ │ ├── floatingpoint.h │ │ ├── wchar.h │ │ └── xlocale.h │ ├── win32 │ │ ├── limits_win32.h │ │ ├── locale_mgmt_win32.h │ │ ├── locale_win32.h │ │ └── support.h │ └── xlocale │ │ ├── __nop_locale_mgmt.h │ │ ├── __posix_l_fallback.h │ │ ├── __strtonum_fallback.h │ │ └── xlocale.h ├── system_error ├── tgmath.h ├── thread ├── tuple ├── type_traits ├── typeindex ├── typeinfo ├── unordered_map ├── unordered_set ├── utility ├── valarray ├── variant ├── vector ├── wchar.h └── wctype.h ├── src ├── algorithm.cpp ├── any.cpp ├── bind.cpp ├── chrono.cpp ├── condition_variable.cpp ├── debug.cpp ├── exception.cpp ├── experimental │ ├── filesystem │ │ ├── directory_iterator.cpp │ │ ├── operations.cpp │ │ └── path.cpp │ └── memory_resource.cpp ├── future.cpp ├── hash.cpp ├── include │ ├── atomic_support.h │ └── config_elast.h ├── ios.cpp ├── iostream.cpp ├── locale.cpp ├── memory.cpp ├── mutex.cpp ├── new.cpp ├── optional.cpp ├── random.cpp ├── regex.cpp ├── shared_mutex.cpp ├── stdexcept.cpp ├── string.cpp ├── strstream.cpp ├── support │ ├── runtime │ │ ├── exception_fallback.ipp │ │ ├── exception_glibcxx.ipp │ │ ├── exception_libcxxabi.ipp │ │ ├── exception_libcxxrt.ipp │ │ ├── exception_msvc.ipp │ │ ├── exception_pointer_cxxabi.ipp │ │ ├── exception_pointer_glibcxx.ipp │ │ ├── exception_pointer_unimplemented.ipp │ │ └── new_handler_fallback.ipp │ ├── solaris │ │ ├── README │ │ ├── mbsnrtowcs.inc │ │ ├── wcsnrtombs.inc │ │ └── xlocale.cpp │ └── win32 │ │ ├── locale_win32.cpp │ │ └── support.cpp ├── system_error.cpp ├── thread.cpp ├── typeinfo.cpp ├── utility.cpp ├── valarray.cpp └── variant.cpp └── test.cpp /README.md: -------------------------------------------------------------------------------- 1 | constexpr_allocator 2 | -------------------------------------------------------------------------------- /constexpr_allocator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/constexpr_allocator.pro -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/__bit_reference: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__bit_reference -------------------------------------------------------------------------------- /include/__bsd_locale_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__bsd_locale_defaults.h -------------------------------------------------------------------------------- /include/__bsd_locale_fallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__bsd_locale_fallbacks.h -------------------------------------------------------------------------------- /include/__config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__config -------------------------------------------------------------------------------- /include/__config_site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__config_site.in -------------------------------------------------------------------------------- /include/__debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__debug -------------------------------------------------------------------------------- /include/__functional_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__functional_03 -------------------------------------------------------------------------------- /include/__functional_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__functional_base -------------------------------------------------------------------------------- /include/__functional_base_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__functional_base_03 -------------------------------------------------------------------------------- /include/__hash_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__hash_table -------------------------------------------------------------------------------- /include/__libcpp_version: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /include/__locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__locale -------------------------------------------------------------------------------- /include/__mutex_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__mutex_base -------------------------------------------------------------------------------- /include/__nullptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__nullptr -------------------------------------------------------------------------------- /include/__refstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__refstring -------------------------------------------------------------------------------- /include/__split_buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__split_buffer -------------------------------------------------------------------------------- /include/__sso_allocator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__sso_allocator -------------------------------------------------------------------------------- /include/__std_stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__std_stream -------------------------------------------------------------------------------- /include/__string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__string -------------------------------------------------------------------------------- /include/__threading_support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__threading_support -------------------------------------------------------------------------------- /include/__tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__tree -------------------------------------------------------------------------------- /include/__tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__tuple -------------------------------------------------------------------------------- /include/__undef_min_max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/__undef_min_max -------------------------------------------------------------------------------- /include/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/algorithm -------------------------------------------------------------------------------- /include/any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/any -------------------------------------------------------------------------------- /include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/array -------------------------------------------------------------------------------- /include/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/atomic -------------------------------------------------------------------------------- /include/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/bitset -------------------------------------------------------------------------------- /include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cassert -------------------------------------------------------------------------------- /include/ccomplex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ccomplex -------------------------------------------------------------------------------- /include/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cctype -------------------------------------------------------------------------------- /include/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cerrno -------------------------------------------------------------------------------- /include/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cfenv -------------------------------------------------------------------------------- /include/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cfloat -------------------------------------------------------------------------------- /include/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/chrono -------------------------------------------------------------------------------- /include/cinttypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cinttypes -------------------------------------------------------------------------------- /include/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ciso646 -------------------------------------------------------------------------------- /include/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/climits -------------------------------------------------------------------------------- /include/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/clocale -------------------------------------------------------------------------------- /include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cmath -------------------------------------------------------------------------------- /include/codecvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/codecvt -------------------------------------------------------------------------------- /include/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/complex -------------------------------------------------------------------------------- /include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/complex.h -------------------------------------------------------------------------------- /include/condition_variable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/condition_variable -------------------------------------------------------------------------------- /include/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/csetjmp -------------------------------------------------------------------------------- /include/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/csignal -------------------------------------------------------------------------------- /include/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstdarg -------------------------------------------------------------------------------- /include/cstdbool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstdbool -------------------------------------------------------------------------------- /include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstddef -------------------------------------------------------------------------------- /include/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstdint -------------------------------------------------------------------------------- /include/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstdio -------------------------------------------------------------------------------- /include/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstdlib -------------------------------------------------------------------------------- /include/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cstring -------------------------------------------------------------------------------- /include/ctgmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ctgmath -------------------------------------------------------------------------------- /include/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ctime -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cwchar -------------------------------------------------------------------------------- /include/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/cwctype -------------------------------------------------------------------------------- /include/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/deque -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/exception -------------------------------------------------------------------------------- /include/experimental/__config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/__config -------------------------------------------------------------------------------- /include/experimental/__memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/__memory -------------------------------------------------------------------------------- /include/experimental/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/algorithm -------------------------------------------------------------------------------- /include/experimental/any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/any -------------------------------------------------------------------------------- /include/experimental/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/chrono -------------------------------------------------------------------------------- /include/experimental/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/deque -------------------------------------------------------------------------------- /include/experimental/dynarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/dynarray -------------------------------------------------------------------------------- /include/experimental/filesystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/filesystem -------------------------------------------------------------------------------- /include/experimental/forward_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/forward_list -------------------------------------------------------------------------------- /include/experimental/functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/functional -------------------------------------------------------------------------------- /include/experimental/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/iterator -------------------------------------------------------------------------------- /include/experimental/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/list -------------------------------------------------------------------------------- /include/experimental/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/map -------------------------------------------------------------------------------- /include/experimental/memory_resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/memory_resource -------------------------------------------------------------------------------- /include/experimental/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/numeric -------------------------------------------------------------------------------- /include/experimental/optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/optional -------------------------------------------------------------------------------- /include/experimental/propagate_const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/propagate_const -------------------------------------------------------------------------------- /include/experimental/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/ratio -------------------------------------------------------------------------------- /include/experimental/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/regex -------------------------------------------------------------------------------- /include/experimental/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/set -------------------------------------------------------------------------------- /include/experimental/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/string -------------------------------------------------------------------------------- /include/experimental/string_view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/string_view -------------------------------------------------------------------------------- /include/experimental/system_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/system_error -------------------------------------------------------------------------------- /include/experimental/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/tuple -------------------------------------------------------------------------------- /include/experimental/type_traits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/type_traits -------------------------------------------------------------------------------- /include/experimental/unordered_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/unordered_map -------------------------------------------------------------------------------- /include/experimental/unordered_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/unordered_set -------------------------------------------------------------------------------- /include/experimental/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/utility -------------------------------------------------------------------------------- /include/experimental/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/experimental/vector -------------------------------------------------------------------------------- /include/ext/__hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ext/__hash -------------------------------------------------------------------------------- /include/ext/hash_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ext/hash_map -------------------------------------------------------------------------------- /include/ext/hash_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ext/hash_set -------------------------------------------------------------------------------- /include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/float.h -------------------------------------------------------------------------------- /include/forward_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/forward_list -------------------------------------------------------------------------------- /include/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/fstream -------------------------------------------------------------------------------- /include/functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/functional -------------------------------------------------------------------------------- /include/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/future -------------------------------------------------------------------------------- /include/initializer_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/initializer_list -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/iomanip -------------------------------------------------------------------------------- /include/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ios -------------------------------------------------------------------------------- /include/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/iosfwd -------------------------------------------------------------------------------- /include/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/iostream -------------------------------------------------------------------------------- /include/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/istream -------------------------------------------------------------------------------- /include/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/iterator -------------------------------------------------------------------------------- /include/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/limits -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/list -------------------------------------------------------------------------------- /include/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/locale -------------------------------------------------------------------------------- /include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/locale.h -------------------------------------------------------------------------------- /include/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/map -------------------------------------------------------------------------------- /include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/math.h -------------------------------------------------------------------------------- /include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/memory -------------------------------------------------------------------------------- /include/modif___split_buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/modif___split_buffer -------------------------------------------------------------------------------- /include/modif_memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/modif_memory -------------------------------------------------------------------------------- /include/modif_new_destroyer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/modif_new_destroyer -------------------------------------------------------------------------------- /include/modif_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/modif_string -------------------------------------------------------------------------------- /include/modif_vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/modif_vector -------------------------------------------------------------------------------- /include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/module.modulemap -------------------------------------------------------------------------------- /include/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/mutex -------------------------------------------------------------------------------- /include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/new -------------------------------------------------------------------------------- /include/numeric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/numeric -------------------------------------------------------------------------------- /include/optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/optional -------------------------------------------------------------------------------- /include/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ostream -------------------------------------------------------------------------------- /include/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/queue -------------------------------------------------------------------------------- /include/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/random -------------------------------------------------------------------------------- /include/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/ratio -------------------------------------------------------------------------------- /include/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/regex -------------------------------------------------------------------------------- /include/scoped_allocator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/scoped_allocator -------------------------------------------------------------------------------- /include/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/set -------------------------------------------------------------------------------- /include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/setjmp.h -------------------------------------------------------------------------------- /include/shared_mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/shared_mutex -------------------------------------------------------------------------------- /include/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/sstream -------------------------------------------------------------------------------- /include/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stack -------------------------------------------------------------------------------- /include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stdbool.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdexcept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stdexcept -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/streambuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/streambuf -------------------------------------------------------------------------------- /include/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/string -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/string.h -------------------------------------------------------------------------------- /include/string_view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/string_view -------------------------------------------------------------------------------- /include/strstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/strstream -------------------------------------------------------------------------------- /include/support/android/locale_bionic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/android/locale_bionic.h -------------------------------------------------------------------------------- /include/support/ibm/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/ibm/limits.h -------------------------------------------------------------------------------- /include/support/ibm/locale_mgmt_aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/ibm/locale_mgmt_aix.h -------------------------------------------------------------------------------- /include/support/ibm/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/ibm/support.h -------------------------------------------------------------------------------- /include/support/ibm/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/ibm/xlocale.h -------------------------------------------------------------------------------- /include/support/musl/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/musl/xlocale.h -------------------------------------------------------------------------------- /include/support/newlib/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/newlib/xlocale.h -------------------------------------------------------------------------------- /include/support/solaris/floatingpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/solaris/floatingpoint.h -------------------------------------------------------------------------------- /include/support/solaris/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/solaris/wchar.h -------------------------------------------------------------------------------- /include/support/solaris/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/solaris/xlocale.h -------------------------------------------------------------------------------- /include/support/win32/limits_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/win32/limits_win32.h -------------------------------------------------------------------------------- /include/support/win32/locale_mgmt_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/win32/locale_mgmt_win32.h -------------------------------------------------------------------------------- /include/support/win32/locale_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/win32/locale_win32.h -------------------------------------------------------------------------------- /include/support/win32/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/win32/support.h -------------------------------------------------------------------------------- /include/support/xlocale/__nop_locale_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/xlocale/__nop_locale_mgmt.h -------------------------------------------------------------------------------- /include/support/xlocale/__posix_l_fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/xlocale/__posix_l_fallback.h -------------------------------------------------------------------------------- /include/support/xlocale/__strtonum_fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/support/xlocale/__strtonum_fallback.h -------------------------------------------------------------------------------- /include/support/xlocale/xlocale.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/system_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/system_error -------------------------------------------------------------------------------- /include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/tgmath.h -------------------------------------------------------------------------------- /include/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/thread -------------------------------------------------------------------------------- /include/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/tuple -------------------------------------------------------------------------------- /include/type_traits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/type_traits -------------------------------------------------------------------------------- /include/typeindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/typeindex -------------------------------------------------------------------------------- /include/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/typeinfo -------------------------------------------------------------------------------- /include/unordered_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/unordered_map -------------------------------------------------------------------------------- /include/unordered_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/unordered_set -------------------------------------------------------------------------------- /include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/utility -------------------------------------------------------------------------------- /include/valarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/valarray -------------------------------------------------------------------------------- /include/variant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/variant -------------------------------------------------------------------------------- /include/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/vector -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/wchar.h -------------------------------------------------------------------------------- /include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/include/wctype.h -------------------------------------------------------------------------------- /src/algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/algorithm.cpp -------------------------------------------------------------------------------- /src/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/any.cpp -------------------------------------------------------------------------------- /src/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/bind.cpp -------------------------------------------------------------------------------- /src/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/chrono.cpp -------------------------------------------------------------------------------- /src/condition_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/condition_variable.cpp -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/exception.cpp -------------------------------------------------------------------------------- /src/experimental/filesystem/directory_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/experimental/filesystem/directory_iterator.cpp -------------------------------------------------------------------------------- /src/experimental/filesystem/operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/experimental/filesystem/operations.cpp -------------------------------------------------------------------------------- /src/experimental/filesystem/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/experimental/filesystem/path.cpp -------------------------------------------------------------------------------- /src/experimental/memory_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/experimental/memory_resource.cpp -------------------------------------------------------------------------------- /src/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/future.cpp -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/include/atomic_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/include/atomic_support.h -------------------------------------------------------------------------------- /src/include/config_elast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/include/config_elast.h -------------------------------------------------------------------------------- /src/ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/ios.cpp -------------------------------------------------------------------------------- /src/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/iostream.cpp -------------------------------------------------------------------------------- /src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/locale.cpp -------------------------------------------------------------------------------- /src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/memory.cpp -------------------------------------------------------------------------------- /src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/mutex.cpp -------------------------------------------------------------------------------- /src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/new.cpp -------------------------------------------------------------------------------- /src/optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/optional.cpp -------------------------------------------------------------------------------- /src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/random.cpp -------------------------------------------------------------------------------- /src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/regex.cpp -------------------------------------------------------------------------------- /src/shared_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/shared_mutex.cpp -------------------------------------------------------------------------------- /src/stdexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/stdexcept.cpp -------------------------------------------------------------------------------- /src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/string.cpp -------------------------------------------------------------------------------- /src/strstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/strstream.cpp -------------------------------------------------------------------------------- /src/support/runtime/exception_fallback.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_fallback.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_glibcxx.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_glibcxx.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_libcxxabi.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_libcxxabi.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_libcxxrt.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_libcxxrt.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_msvc.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_msvc.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_pointer_cxxabi.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_pointer_cxxabi.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_pointer_glibcxx.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_pointer_glibcxx.ipp -------------------------------------------------------------------------------- /src/support/runtime/exception_pointer_unimplemented.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/exception_pointer_unimplemented.ipp -------------------------------------------------------------------------------- /src/support/runtime/new_handler_fallback.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/runtime/new_handler_fallback.ipp -------------------------------------------------------------------------------- /src/support/solaris/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/solaris/README -------------------------------------------------------------------------------- /src/support/solaris/mbsnrtowcs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/solaris/mbsnrtowcs.inc -------------------------------------------------------------------------------- /src/support/solaris/wcsnrtombs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/solaris/wcsnrtombs.inc -------------------------------------------------------------------------------- /src/support/solaris/xlocale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/solaris/xlocale.cpp -------------------------------------------------------------------------------- /src/support/win32/locale_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/win32/locale_win32.cpp -------------------------------------------------------------------------------- /src/support/win32/support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/support/win32/support.cpp -------------------------------------------------------------------------------- /src/system_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/system_error.cpp -------------------------------------------------------------------------------- /src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/thread.cpp -------------------------------------------------------------------------------- /src/typeinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/typeinfo.cpp -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/valarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/valarray.cpp -------------------------------------------------------------------------------- /src/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/src/variant.cpp -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zamazan4ik/constexpr_allocator/HEAD/test.cpp --------------------------------------------------------------------------------