Maikel Nadolski
Maikel Nadolski
I am looking for C++14 optional drop-in which I can use in `constexpr` contexts. From the Readme it seems to fit my needs, because you state this implementation provides a...
I put this as a reminder here, as I will come back to this with a pull request. I found the reason to why the it is sometimes not possible...
I have problems to see how `CompositeBoundaryAlgorithm` and `CompositeBoundarySchedule` are intended to be used or even what they are supposed to do. * Can they for example help with flux...
This is a hopefully clean PR to issue #43.
Is there any reason why `hier::Patch` does return its class member of type `std::shared_ptr`'s by value instead of by reference to `const std::shared_ptr`? Each time I want to access the...
`syn_ptr`s `value_type` is equal to its `element_type`. It does not seem to be correct for const-qualified types `T`s? Shouldn't it be `using value_type = std::remove_cv_t`.