Denis T

Results 3 issues of Denis T

If you run the `parallel_partial_sum` algorithm on the following data set: `{1, 2, 3, 4, 5}`, you will get the result {1, 3, **5**, 10, 15} instead of {1, 3,...

**Describe the bug** `EXPECT_THAT` macro with the `Throws` expectation invokes the callable twice when it does not throw an exception. This does not happen when the exception is thrown. This...

bug

This code fails to compile with both clang and gcc trunk (but compiles with the latest MSVC): ```cpp #include #include #include struct optional_linked_list { int value; std::optional next; }; int...