- Apr 17, 2020
-
-
Szymon Romik authored
basic_string: optimize move ctor and assignment
-
- Apr 02, 2020
-
-
Igor Chorążewicz authored
Until now, move ctor and assignment made unnecessary copies when non_sso was used. Fix that by just moving non_sso_data.
-
Igor Chorążewicz authored
Example: Missing exception handling in Panaconda
-
Krzysztof Filipek authored
Add missing catch clause to handle transaction_error
-
- Apr 01, 2020
-
-
Szymon Romik authored
tests: change sizeof(&tls->local()) to sizeof(tls->local())
-
Igor Chorążewicz authored
The idea is to persist tls->local() variable, not the pointer to it.
-
- Mar 30, 2020
-
-
Szymon Romik authored
contigous_iterator: make operator[] take signed integral instead
-
- Mar 26, 2020
-
-
Igor Chorążewicz authored
-
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
-
Igor Chorążewicz authored
Example: Handle exceptions in panaconda example
-
- Mar 25, 2020
-
-
Szymon Romik authored
Update readme
-
Krzysztof Filipek authored
Add try-catch clauses to avoid throwing exceptions from destructors
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
-
- Mar 24, 2020
-
-
Szymon Romik authored
Example: Handle exceptions in pman example
-
Igor Chorążewicz authored
Handle exceptions at pool close
-
Krzysztof Filipek authored
Add try-catch clause in destructor
-
Krzysztof Filipek authored
Add some exception handling for closing and assignments
-
Igor Chorążewicz authored
Documentation update for pool header
-
- Mar 23, 2020
-
-
Szymon Romik authored
vector, segment_vector: optimize clear() and erase() for trivial-types
-
Krzysztof Filipek authored
Add missing information about exceptions
-
- Mar 20, 2020
-
-
Łukasz Stolarczuk authored
Example: Handle exceptions in pmpong example
-
- Mar 19, 2020
-
-
Igor Chorążewicz authored
perist() was missing.
-
Krzysztof Filipek authored
Add try-catch clauses to avoid throwing exceptions from destructors
-
Igor Chorążewicz authored
replace it with std::is_trivially_destructible which is narrower but that's fine - it means that earlier, for some types we would not call destructors explicitly and now we will (but they will do nothing).
-
Igor Chorążewicz authored
do not snapshot all erased elements if the are at the end.
-
Igor Chorazewicz authored
-
Łukasz Stolarczuk authored
Test: check_is_pmem unchecked return value fix
-
Szymon Romik authored
Example: Add exception handling to example
-
Krzysztof Filipek authored
Add suppression for unchecked return value
-
Igor Chorążewicz authored
Test: Make persistent array destructor fix
-
Igor Chorążewicz authored
Example: Add try-catch clause around pool close function
-
- Mar 18, 2020
-
-
Krzysztof Filipek authored
Add missing try-catch clauses to handle proper exceptions
-
Krzysztof Filipek authored
Avoid throwing an exception from main function
-
Krzysztof Filipek authored
Add try-catch clause to avoid throwing an exception from destructor on assignment
-
Igor Chorążewicz authored
Avoid potential side effect in array_modifiers test
-
- Mar 17, 2020
-
-
Krzysztof Filipek authored
Move post-incrementation after assertion to avoid side effect
-
Szymon Romik authored
String capacity test - unchecked value fix
-
Szymon Romik authored
Exception handling for volatile state test
-
Szymon Romik authored
examples: add vector-based slab example
-