Jérémie Dumas
Jérémie Dumas
Hmm, strangely enough I don't observe the problem anymore either. Maybe this has been solved by an update of another component (e.g. bash)?
How does `std::string_view` achieves this then? Does it perform a slow loop at compile time to find the length of the `char *`? Or it uses a `constexpr` version of...
Why do you need consteval? We could reimplement a constrexpr `strlen` using a simple loop no? E.g. ```c++ constexpr std::size_t length(const char* start) { const char* end = start; for(;...
Got it. Would be nice if we could dispatch code based on whether the arg is constexpr or not...
I've tried it with Adwaita as well, but it doesn't work either. I'm changing my theme with `lxappearance`, and I think it's applying to both GTK 2 and GTK 3...
Hi, I do not have any plan to add new features to autobib at the moment. I've been meaning to refactor the codebase for a while, but I don't know...
Is there any chance to see this feature implemented in a future version of Catch2? I've been hitting this limitation a couple of times, and it would really help debugging...
@sourcedelica what's the status on this one? Is your patch ready to be applied, or does it need upstream modifications from CMake first? I tried to apply your patch, but...
Ok thanks. Could this be merged into the main repo then? Seems the upstream CMake issue that was blocking this has been fixed now.
Hi. One aspect of the doc that could be improved now that Catch2 v3 is split into several headers, is that the doc should mentions which headers we should include...