Mateusz Pusz

Results 651 comments of Mateusz Pusz

@VictorEijkhout, could you provide more details about your problem? The best would be a Compiler Explorer link with the code that does not compile. I just tried the following https://godbolt.org/z/Mzq7TcssY,...

Do you use Conan, or do you provide dependencies manually? In case you do it by yourself, you might be using an unstable version of fmt. There was a known...

Sure! However, if you just want to consume the library, you do not have to compile any of our tests or examples. Just use `src` directory as stated in: -...

You complained about the library not compiling for you. I didn't know that you just want to install it. You just mentioned it in another thread 😉 Anyway, if my...

This is why we have an extensive ["Installation And Usage" chapter](https://mpusz.github.io/mp-units/latest/getting_started/installation_and_usage/) in our documentation, and the link to it is provided in the README.md and on a GitHub repo page.

It seems that Conan (and also you 😉) thought you used gcc-14. But CMake actually reports gcc-13 being used. Could you please check your Conan profile or `conan install` command...

Overriding the compiler version does nothing. Conan does not know the path to the compiler to run. You need to provide proper path to executables. See the profile example in...

@Becheler, did you manage to solve your problem? Can we close this issue?

Naming is hard 😉: 1. This does not control the convertibility to/from a numerical value, but to /from `quantity`/`quantity_point`. I do not have a good idea of how to rename...

Maybe: ```cpp static constexpr bool to_quantity_is_explicit = false; static constexpr bool from_quantity_is_explicit = false; ``` and ```cpp static constexpr bool to_quantity_point_is_explicit = false; static constexpr bool from_quantity_point_is_explicit = false; ```...