Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cmake/defaults.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ if(ENABLE_CPPCHECK)
--enable=all
--inline-suppr
--error-exitcode=42
--checkers-report=${CMAKE_BINARY_DIR}/cppcheck.report
--suppress=checkersReport # see cppcheck.report for details
--suppress=missingIncludeSystem
--suppress=unmatchedSuppression)
set(CMAKE_C_CPPCHECK ${CMAKE_CXX_CPPCHECK})
Expand Down
5 changes: 5 additions & 0 deletions conan/clang22
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include(cppstd)

[settings]
compiler=clang
compiler.version=22
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def config_options(self):
del self.options.fPIC

def requirements(self):
self.requires("fmt/12.0.0")
self.requires("fmt/12.1.0")
if not self.conf.get("tools.build:skip_test"):
self.requires("gtest/1.17.0")

Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <array>
#include <fmt/core.h>
#include <fmt/base.h>
#include <functional>
#include <math/math.hpp>
#include <numeric>
Expand Down
Loading