diff options
author | David Robillard <d@drobilla.net> | 2024-10-01 18:09:49 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-01 18:25:44 -0400 |
commit | e47873e863b7fb6bb081681f1944135c1c1cb61a (patch) | |
tree | ee918ac145612e4bd04d3e2c2903a8b8a4c0865e | |
parent | 54570dc09a0de4c4773e9ca7a6fef80c3bcdfc2e (diff) | |
download | chilbert-e47873e863b7fb6bb081681f1944135c1c1cb61a.tar.gz chilbert-e47873e863b7fb6bb081681f1944135c1c1cb61a.tar.bz2 chilbert-e47873e863b7fb6bb081681f1944135c1c1cb61a.zip |
Clean up includes and remove now-unnecessary IWYU configuration
-rw-r--r-- | .clant.json | 4 | ||||
-rw-r--r-- | .includes.imp | 3 | ||||
-rw-r--r-- | benchmark/bench_bitvec.cpp | 1 | ||||
-rw-r--r-- | include/chilbert/chilbert.ipp | 1 |
4 files changed, 0 insertions, 9 deletions
diff --git a/.clant.json b/.clant.json deleted file mode 100644 index 76cae6d..0000000 --- a/.clant.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "version": "1.0.0", - "mapping_files": [".includes.imp"] -} diff --git a/.includes.imp b/.includes.imp deleted file mode 100644 index 41e4b8b..0000000 --- a/.includes.imp +++ /dev/null @@ -1,3 +0,0 @@ -[ - { "symbol": [ "std::array", "private", "<array>", "public" ] }, -] diff --git a/benchmark/bench_bitvec.cpp b/benchmark/bench_bitvec.cpp index 0eed895..bddde23 100644 --- a/benchmark/bench_bitvec.cpp +++ b/benchmark/bench_bitvec.cpp @@ -9,7 +9,6 @@ #include "chilbert/SmallBitVec.hpp" #include "chilbert/StaticBitVec.hpp" // IWYU pragma: keep -#include <algorithm> #include <array> #include <cstddef> #include <fstream> diff --git a/include/chilbert/chilbert.ipp b/include/chilbert/chilbert.ipp index 1c63178..cdb0755 100644 --- a/include/chilbert/chilbert.ipp +++ b/include/chilbert/chilbert.ipp @@ -6,7 +6,6 @@ #include "chilbert/DynamicBitVec.hpp" #include "chilbert/SmallBitVec.hpp" #include "chilbert/StaticBitVec.hpp" -#include "chilbert/chilbert.hpp" #include "chilbert/detail/gray_code_rank.hpp" #include <cassert> |