Jason Turner
Jason Turner
Oh I do what I can with these! I'll mark it and see when I might come back to it. Problem is, I'll probably come out with an episode that...
https://en.cppreference.com/w/cpp/utility/functional/invoke
@LB-- I'm confused by your reference to `reference_converts_from_temporary` I don't see how that comes into play for this episode
invoke_r can only invoke implicit conversions, and we know that we don't want implicit conversions. Worse, because it's a stdlib header file, any warnings that would have been generated are...
Episode 466
This kind of warning is being emitted from the backend (optimizer). Turning on the sanitizers disables certain optimizations so that the runtime can catch them, so the optimizer no longer...
> What happens if you do it with a key type of `std::string` and you try to `.find("raw string literal")` by accident instead of `.find("string view literal"sv)`? Does it try...