Mateusz Pusz

Results 651 comments of Mateusz Pusz

I didn't check the workaround as I depend on CMake to call it correctly. I don't know how to force CMake to use the absolute path here.

Also, I am not sure if that is a correct summary. I was able to compile the code with clang-18 and modules enabled when I installed either libc++-17 (before it...

libc++-19 ``` ls -al /usr/include/c++/v1 lrwxrwxrwx 1 root root 32 Jul 3 09:19 /usr/include/c++/v1 -> ../../lib/llvm-19/include/c++/v1 ls -al /usr/include/c++/v1/__config_site -rw-r--r-- 1 root root 1806 Jul 3 09:19 /usr/include/c++/v1/__config_site ``` libc++-17...

Hi! Thanks for your feedback. I must admit that I am not the biggest fan of forcing CMake to act as a package manager. Even the CEO of Kitware, Bill...

As I said, Bill pointed this out several times already. Here is another older talk that mentions that: https://youtu.be/wULu83jQmIQ?si=gACB3x4Krpkuj7FD&t=3261 Thanks for your contribution!

@chiphogg, my understanding is that some users derive from `quantity` to add more information to it. Here is an example: https://github.com/mpusz/mp-units/blob/7102a4f63d3efe10ecb10486c44eedf80c0f9976/test/static/quantity_test.cpp#L400-L432.

Yeah, I thought about this as well. But then, how do we define units like: https://github.com/mpusz/mp-units/blob/2892fd83b0551cd6ccbb63d448b3474e7c1c66b6/src/systems/include/mp-units/systems/si/units.h#L103-L105 Do we want to expose `Rep` from a unit as well? Note that we...

Good point @chiphogg. I forgot about `get_value`. Is `long double` available on all the embedded platforms? Said otherwise, is it possible to cross-compile the current `pi` definition to every platform?

Although, `long double` may appear due to `common_magnitude_type` being used in `sudo_cast`.