Based on what we were told we made the following changes to our project:
-Everything now works with modules and CMake as needed
-Works with new matrix library
-Project files now fully comply with clang-tidy
-Proper tests were created by using expect library in this repository
The problem is when using find ./algebra2 ./discrete_math/ -iname '*.cxx' -o -iname '*.ixx' | xargs clang-tidy-18 -p ./build/debug/ --extra-arg=-std=c++26 not every file is compiled for some reason, but when using gnu++26 instead of c++26 everything works.
Based on what we were told we made the following changes to our project: -Everything now works with modules and CMake as needed -Works with new matrix library -Project files now fully comply with clang-tidy -Proper tests were created by using expect library in this repository
The problem is when using
find ./algebra2 ./discrete_math/ -iname '*.cxx' -o -iname '*.ixx' | xargs clang-tidy-18 -p ./build/debug/ --extra-arg=-std=c++26
not every file is compiled for some reason, but when usinggnu++26
instead ofc++26
everything works.