Commit 3012694
committed
update memory-safe-cpp
1 parent 9f33087 commit 3012694
1 file changed
+1
-1
lines changedSubmodule memory-safe-cpp updated 99 files
- library/3rdparty/EASTL-3.19.05.diff+3.1k
- library/3rdparty/EASTL/.github/workflows/c-cpp.yml+132
- library/3rdparty/EASTL/README.md+2-2
- library/3rdparty/EASTL/doc/Design.md+1-1
- library/3rdparty/EASTL/doc/EASTL.natvis+107-11
- library/3rdparty/EASTL/doc/FAQ.md+1-1
- library/3rdparty/EASTL/include/EASTL/algorithm.h+134-12
- library/3rdparty/EASTL/include/EASTL/allocator.h+6-4
- library/3rdparty/EASTL/include/EASTL/array.h+95-1
- library/3rdparty/EASTL/include/EASTL/bit.h+107
- library/3rdparty/EASTL/include/EASTL/bitset.h+4-2
- library/3rdparty/EASTL/include/EASTL/bonus/lru_cache.h+1-1
- library/3rdparty/EASTL/include/EASTL/bonus/overloaded.h+81
- library/3rdparty/EASTL/include/EASTL/bonus/tuple_vector.h+9-3
- library/3rdparty/EASTL/include/EASTL/chrono.h+63-47
- library/3rdparty/EASTL/include/EASTL/compare.h+45
- library/3rdparty/EASTL/include/EASTL/deque.h+38-7
- library/3rdparty/EASTL/include/EASTL/fixed_substring.h+10
- library/3rdparty/EASTL/include/EASTL/hash_map.h+121-65
- library/3rdparty/EASTL/include/EASTL/hash_set.h+23-5
- library/3rdparty/EASTL/include/EASTL/heap.h+2-2
- library/3rdparty/EASTL/include/EASTL/internal/atomic/arch/x86/arch_x86.h+2-2
- library/3rdparty/EASTL/include/EASTL/internal/atomic/arch/x86/arch_x86_exchange.h+1-1
- library/3rdparty/EASTL/include/EASTL/internal/atomic/atomic_base_width.h+1-1
- library/3rdparty/EASTL/include/EASTL/internal/atomic/atomic_integral.h+1-1
- library/3rdparty/EASTL/include/EASTL/internal/atomic/atomic_macros/atomic_macros.h+11
- library/3rdparty/EASTL/include/EASTL/internal/atomic/atomic_macros/atomic_macros_base.h+6-1
- library/3rdparty/EASTL/include/EASTL/internal/atomic/compiler/msvc/compiler_msvc.h-1
- library/3rdparty/EASTL/include/EASTL/internal/atomic/compiler/msvc/compiler_msvc_cpu_pause.h+7-12
- library/3rdparty/EASTL/include/EASTL/internal/config.h+33-15
- library/3rdparty/EASTL/include/EASTL/internal/copy_help.h+29-8
- library/3rdparty/EASTL/include/EASTL/internal/fixed_pool.h+3-1
- library/3rdparty/EASTL/include/EASTL/internal/function.h+2-2
- library/3rdparty/EASTL/include/EASTL/internal/functional_base.h+4-3
- library/3rdparty/EASTL/include/EASTL/internal/generic_iterator.h+14-3
- library/3rdparty/EASTL/include/EASTL/internal/hashtable.h+101-199
- library/3rdparty/EASTL/include/EASTL/internal/integer_sequence.h+23-9
- library/3rdparty/EASTL/include/EASTL/internal/red_black_tree.h-42
- library/3rdparty/EASTL/include/EASTL/internal/thread_support.h-86
- library/3rdparty/EASTL/include/EASTL/internal/type_detected.h+180
- library/3rdparty/EASTL/include/EASTL/internal/type_fundamental.h+5-1
- library/3rdparty/EASTL/include/EASTL/internal/type_pod.h+14-11
- library/3rdparty/EASTL/include/EASTL/internal/type_properties.h+14
- library/3rdparty/EASTL/include/EASTL/internal/type_transformations.h+6-32
- library/3rdparty/EASTL/include/EASTL/internal/type_void_t.h+43
- library/3rdparty/EASTL/include/EASTL/iterator.h+105-52
- library/3rdparty/EASTL/include/EASTL/list.h+24-9
- library/3rdparty/EASTL/include/EASTL/map.h+123-19
- library/3rdparty/EASTL/include/EASTL/memory.h+41
- library/3rdparty/EASTL/include/EASTL/numeric.h+97
- library/3rdparty/EASTL/include/EASTL/numeric_limits.h+101
- library/3rdparty/EASTL/include/EASTL/optional.h+22-2
- library/3rdparty/EASTL/include/EASTL/queue.h+8-1
- library/3rdparty/EASTL/include/EASTL/set.h+22-2
- library/3rdparty/EASTL/include/EASTL/shared_ptr.h+41-20
- library/3rdparty/EASTL/include/EASTL/slist.h+28-12
- library/3rdparty/EASTL/include/EASTL/sort.h+11-8
- library/3rdparty/EASTL/include/EASTL/stack.h+7-1
- library/3rdparty/EASTL/include/EASTL/string.h+206-11
- library/3rdparty/EASTL/include/EASTL/string_view.h+233-15
- library/3rdparty/EASTL/include/EASTL/tuple.h+20-47
- library/3rdparty/EASTL/include/EASTL/type_traits.h+9
- library/3rdparty/EASTL/include/EASTL/unique_ptr.h+18-1
- library/3rdparty/EASTL/include/EASTL/utility.h+99-3
- library/3rdparty/EASTL/include/EASTL/variant.h+49-1
- library/3rdparty/EASTL/include/EASTL/vector.h+37-8
- library/3rdparty/EASTL/source/assert.cpp+6-2
- library/3rdparty/EASTL/source/numeric_limits.cpp+26
- library/3rdparty/EASTL/test/source/EASTLTest.h+2
- library/3rdparty/EASTL/test/source/TestAlgorithm.cpp+234-1
- library/3rdparty/EASTL/test/source/TestAllocator.cpp+2
- library/3rdparty/EASTL/test/source/TestArray.cpp+47
- library/3rdparty/EASTL/test/source/TestChrono.cpp+7-4
- library/3rdparty/EASTL/test/source/TestDeque.cpp+38-6
- library/3rdparty/EASTL/test/source/TestExtra.cpp+608-2
- library/3rdparty/EASTL/test/source/TestFixedString.cpp+52
- library/3rdparty/EASTL/test/source/TestFunctional.cpp+34
- library/3rdparty/EASTL/test/source/TestHash.cpp+8-4
- library/3rdparty/EASTL/test/source/TestIterator.cpp+103-8
- library/3rdparty/EASTL/test/source/TestList.cpp+99-4
- library/3rdparty/EASTL/test/source/TestMap.cpp+61-4
- library/3rdparty/EASTL/test/source/TestMap.h+28-2
- library/3rdparty/EASTL/test/source/TestMemory.cpp+44
- library/3rdparty/EASTL/test/source/TestNumericLimits.cpp+5
- library/3rdparty/EASTL/test/source/TestOptional.cpp+42
- library/3rdparty/EASTL/test/source/TestSList.cpp+106-8
- library/3rdparty/EASTL/test/source/TestSet.cpp+46-2
- library/3rdparty/EASTL/test/source/TestSmartPtr.cpp+36-3
- library/3rdparty/EASTL/test/source/TestSort.cpp+41-1
- library/3rdparty/EASTL/test/source/TestString.inl+34-6
- library/3rdparty/EASTL/test/source/TestStringView.cpp+13-6
- library/3rdparty/EASTL/test/source/TestStringView.inl+80
- library/3rdparty/EASTL/test/source/TestTuple.cpp+51
- library/3rdparty/EASTL/test/source/TestTypeTraits.cpp+131-29
- library/3rdparty/EASTL/test/source/TestUtility.cpp+288-5
- library/3rdparty/EASTL/test/source/TestVariant.cpp+97-42
- library/3rdparty/EASTL/test/source/TestVector.cpp+88-6
- library/3rdparty/clone-EABase-EASTL.bat+2-2
- library/3rdparty/clone-EABase-EASTL.sh+2-2
0 commit comments