- Jun 30, 2021
-
-
Igor Chorążewicz authored
This fixes following tests under UBSAN: vector_modifiers_type_requirements_0_none vector_parameters_0_none They failed with following error message: "runtime error: reference binding to null pointer of type" This fix is continuation of 41ddc88a
-
Lucas A. M. Magalhaes authored
On tests listed bellow the reserve method is being called before any allocation on the object therefore realloc being called without any previous allocation. Inside realloc _data is being used with the operator '[]', as it is nullptr at that moment it's an undefined behaviour. This patch simply returns a call to alloc if _data is nullptr. This tests fails on PowerPC with Segmentation Fault because of this issue: segment_vector_array_expsize_assign_exceptions_oom_0_none segment_vector_array_expsize_assign_exceptions_oom_0_memcheck segment_vector_array_expsize_capacity_exceptions_oom_0_none segment_vector_array_expsize_capacity_exceptions_oom_0_memcheck segment_vector_array_expsize_modifiers_exceptions_oom_0_none segment_vector_array_expsize_modifiers_exceptions_oom_0_memcheck segment_vector_vector_expsize_assign_exceptions_oom_0_none segment_vector_vector_expsize_assign_exceptions_oom_0_memcheck segment_vector_vector_expsize_capacity_exceptions_oom_0_none segment_vector_vector_expsize_capacity_exceptions_oom_0_memcheck segment_vector_vector_expsize_modifiers_exceptions_oom_0_none segment_vector_vector_expsize_modifiers_exceptions_oom_0_memcheck segment_vector_vector_fixedsize_assign_exceptions_oom_0_none segment_vector_vector_fixedsize_assign_exceptions_oom_0_memcheck Signed-off-by:Lucas A. M. Magalhães <lamm@linux.ibm.com>
-
- Sep 23, 2020
-
-
Łukasz Stolarczuk authored
Merge stable 1.7 into stable 1.8
-
- Sep 21, 2020
-
-
Łukasz Stolarczuk authored
-
Szymon Romik authored
Merge stable-1.6 into stable-1.7
-
- Sep 18, 2020
-
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
-
Igor Chorążewicz authored
docker: make build- and push-image scripts more verbose
-
Igor Chorążewicz authored
Merge stable-1.5 into stable-1.6
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
otherwise it will still use found (most likely, newer) clang-format.
-
- Sep 11, 2020
-
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
Update doxygen settings
-
Igor Chorążewicz authored
bump docker images versions
-
- Sep 10, 2020
-
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
and set clang-format to fixed version (6.0).
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
fixes #854
-
Łukasz Stolarczuk authored
-
- Apr 21, 2020
-
-
Łukasz Stolarczuk authored
Merge stable 1.7 into stable 1.8
-
- Apr 20, 2020
-
-
Igor Chorążewicz authored
-
- Apr 17, 2020
-
-
Szymon Romik authored
Merge stable-1.6 into stable-1.7
-
- Apr 16, 2020
-
-
Igor Chorążewicz authored
Merge stable 1.5 into stable 1.6
-
- Apr 10, 2020
-
-
Igor Chorążewicz authored
-
- Mar 30, 2020
-
-
Szymon Romik authored
contigous_iterator: make operator[] take signed integral instead
-
- Mar 27, 2020
-
-
Igor Chorążewicz authored
of unsigned. The reason is that Windows cannot decide for a call like this: `it[0] = 10` whether to use: * operator[](unsigned) -- one conversion from signed to unsigned * operator T*() and then build in operator[](signed) -- one conversion
-
- Mar 10, 2020
-
-
Łukasz Stolarczuk authored
Merge stable 1.7 to stable 1.8
-
- Mar 04, 2020
-
-
Łukasz Stolarczuk authored
-
- Feb 28, 2020
-
-
Igor Chorążewicz authored
Merge stable-1.6 into stable-1.7
-
- Feb 27, 2020
-
-
Igor Chorążewicz authored
Merge stable-1.5 into stable-1.6
-
- Feb 26, 2020
-
-
Igor Chorążewicz authored
fix dir creation in auto docs update
-
Szymon Romik authored
tests: cleanup source of removed test
-
Szymon Romik authored
Only parse libpmemobj version if it matches a pattern (major[.]minor.*)
-
- Feb 25, 2020
-
-
Łukasz Stolarczuk authored
-
Igor Chorążewicz authored
doc: enable auto gh-pages generation in docker script
-
- Feb 20, 2020
-
-
- Feb 17, 2020
-
-
Igor Chorążewicz authored
Add skip flags for additional artifacts built/installed in dockerimages
-
Igor Chorazewicz authored
insert_erase_mt was removed but it's source stayed.
-