Marcel

Results 18 issues of Marcel

I see in reductions that code like ```cpp class test : private bar { public: statement1; statement2; }; ``` will often be collapsed to ```cpp class test : private bar...

See discussion at https://github.com/ericniebler/range-v3/issues/1662#issuecomment-936423357 @ericniebler I think this is a trade-off between the current concept definition in the standard and the non-ability of the range-v3 views to handle move-only views....

Hi @ericniebler, 8 months ago you released the latest stable version, is it possible to do a new stable release? Best regards!

Hi! This is more a question than a bug report. I thought that [range adaptor closure object](https://eel.is/c++draft/range.adaptor.object), so a range adaptor that already bound it's possible arguments, allows the following...

While trying to replace range-v3 with cmcstl2 I found out that `std::experimental::ranges::views::values` and `std::experimental::ranges::views::keys` is missing (and std::experimental::ranges::views::elements, too, but this is also missing in range-v3). https://godbolt.org/z/etU7PU I have seen...

* boost program options * boost pp (for f2f) https://github.com/noma/ham/blob/7466a17f8d34ae107cb88bcb8b2a84da25a1b23d/include/ham/functor/function.hpp#L76-L122

Look at ./inner_product_mpi ```terminal > mpirun -n 1 ./inner_product_mpi : -n 1 valgrind ./inner_product_mpi : -n 2 ./inner_product_mpi ``` ```terminal ==28739== Memcheck, a memory error detector ==28739== Copyright (C) 2002-2017,...

There are a couple of functions that take `ham::offload::buffer_ptr` as reference. Could those invocation also be `const &`? https://github.com/noma/ham/blob/5649c04291336e0df172734ca8631d7be3020dbd/include/ham/offload/offload.hpp#L218-L223

What is the difference between ham::new_buffer and ham::offload::allocate? * `ham::new_buffer` is called with `new_buffer{size_t n, node_t source}` and is a functor * `ham::offload::allocate` is called with `allocate(const node_t node, size_t...

enhancement

Hi google-benchmark team, being accustomed to the googletest framework, I'm searching for an utility that matches TYPED_TEST. I only found BENCHMARK_TEMPLATE, but this will pass all template arguments to just...

enhancement
help wanted