Beartama
Beartama
I did some more digging and found out that because C is not specified in the `LANGUAGES` options, the command `enable_language` will not be called for C and hence the...
I think for your case in particular, it suffices to add the `ARCH` argument to make conan pull and build libraries targeting `armv7`. ``` conan_cmake_run( CONANFILE conanfile.txt BASIC_SETUP ARCH armv7...
I thought about a bit more, it is not possible since even for `arm-linux-gnueabihf-gcc-10` and `arm-linux-gnueabihf-g++-10`, the possible values for ARCH can be `armv7`, `armv7hf`, etc. Hence, I think a...
It seems like you didn't build/link the `fmt` library, can you share your repository?
I'm not sure why a copy is used instead of a repeat, wouldn't a repeat be better in this case?
I see, my thinking was it is just kind of expected that it would allow reusing keys since (I think) that is the main use case for that, otherwise it...
My wording was bad there, I mean they are technically allowed, but they do something wildly unexpected. I think saying that `fmt` doesn't generate new nodes in this case is...
The current behaviour is a bit nonsensical to rely upon in my opion (at least I don't see how you can do something useful with it but you'll never know),...
I've implemented something similar, but I design my state machine to have an event to progress all the time. I call this `Process`, and everytime the state machine is in...
This happens because the member function pointers do not get converted to `zero_wrapper` by ADL, but instead, they are understood by the compiler as parameters to the `operator,` and hence...