diff options
author | David Robillard <d@drobilla.net> | 2022-11-07 06:57:49 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-11-07 06:57:49 -0500 |
commit | 700687d95096208433cf23eb67a02f5b743e4672 (patch) | |
tree | a3424955d28d2584df7a1f42b9b7951b446f064e | |
parent | 459805cef11dee2f0f7ef45b4a0b5853ae42954a (diff) | |
download | chilbert-700687d95096208433cf23eb67a02f5b743e4672.tar.gz chilbert-700687d95096208433cf23eb67a02f5b743e4672.tar.bz2 chilbert-700687d95096208433cf23eb67a02f5b743e4672.zip |
Clean up includes
-rw-r--r-- | .clant.json | 4 | ||||
-rw-r--r-- | .includes.imp | 3 | ||||
-rw-r--r-- | benchmark/bench_bitvec.cpp | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/.clant.json b/.clant.json new file mode 100644 index 0000000..76cae6d --- /dev/null +++ b/.clant.json @@ -0,0 +1,4 @@ +{ + "version": "1.0.0", + "mapping_files": [".includes.imp"] +} diff --git a/.includes.imp b/.includes.imp new file mode 100644 index 0000000..41e4b8b --- /dev/null +++ b/.includes.imp @@ -0,0 +1,3 @@ +[ + { "symbol": [ "std::array", "private", "<array>", "public" ] }, +] diff --git a/benchmark/bench_bitvec.cpp b/benchmark/bench_bitvec.cpp index 6db2aa6..433274c 100644 --- a/benchmark/bench_bitvec.cpp +++ b/benchmark/bench_bitvec.cpp @@ -9,6 +9,7 @@ #include "chilbert/SmallBitVec.hpp" #include "chilbert/StaticBitVec.hpp" // IWYU pragma: keep +#include <algorithm> #include <array> #include <cstddef> #include <fstream> |