diff options
author | David Robillard <d@drobilla.net> | 2022-09-16 20:03:14 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-16 22:31:06 -0400 |
commit | cad9fff2ac4c18051a7013c8854598112853c0b4 (patch) | |
tree | 59274fb1dee6b927f2eaecc85c131259324c98cc /include | |
parent | 60feb44b88a662e3011b5c3c82c7cf3720540b68 (diff) | |
download | chilbert-cad9fff2ac4c18051a7013c8854598112853c0b4.tar.gz chilbert-cad9fff2ac4c18051a7013c8854598112853c0b4.tar.bz2 chilbert-cad9fff2ac4c18051a7013c8854598112853c0b4.zip |
Clean up include guards
Diffstat (limited to 'include')
-rw-r--r-- | include/chilbert/chilbert.ipp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/BitVecIndex.hpp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/BitVecIterator.hpp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/BitVecMask.hpp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/MultiBitVec.hpp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/gray_code_rank.hpp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/operations.hpp | 4 | ||||
-rw-r--r-- | include/chilbert/detail/traits.hpp | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/include/chilbert/chilbert.ipp b/include/chilbert/chilbert.ipp index db75a62..5c18570 100644 --- a/include/chilbert/chilbert.ipp +++ b/include/chilbert/chilbert.ipp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_ALGORITHM_HPP -#define CHILBERT_ALGORITHM_HPP +#ifndef CHILBERT_CHILBERT_HPP +#define CHILBERT_CHILBERT_HPP #include "chilbert/BoundedBitVec.hpp" #include "chilbert/DynamicBitVec.hpp" diff --git a/include/chilbert/detail/BitVecIndex.hpp b/include/chilbert/detail/BitVecIndex.hpp index e7b385e..0998968 100644 --- a/include/chilbert/detail/BitVecIndex.hpp +++ b/include/chilbert/detail/BitVecIndex.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_BITVECINDEX_HPP -#define CHILBERT_BITVECINDEX_HPP +#ifndef CHILBERT_DETAIL_BITVECINDEX_HPP +#define CHILBERT_DETAIL_BITVECINDEX_HPP #include <cassert> #include <climits> diff --git a/include/chilbert/detail/BitVecIterator.hpp b/include/chilbert/detail/BitVecIterator.hpp index 8902747..2458da9 100644 --- a/include/chilbert/detail/BitVecIterator.hpp +++ b/include/chilbert/detail/BitVecIterator.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_BITVECITERATOR_HPP -#define CHILBERT_BITVECITERATOR_HPP +#ifndef CHILBERT_DETAIL_BITVECITERATOR_HPP +#define CHILBERT_DETAIL_BITVECITERATOR_HPP #include "chilbert/detail/BitVecMask.hpp" diff --git a/include/chilbert/detail/BitVecMask.hpp b/include/chilbert/detail/BitVecMask.hpp index 2d3466a..f015d63 100644 --- a/include/chilbert/detail/BitVecMask.hpp +++ b/include/chilbert/detail/BitVecMask.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_BITVECMASK_HPP -#define CHILBERT_BITVECMASK_HPP +#ifndef CHILBERT_DETAIL_BITVECMASK_HPP +#define CHILBERT_DETAIL_BITVECMASK_HPP #include <climits> #include <cstddef> diff --git a/include/chilbert/detail/MultiBitVec.hpp b/include/chilbert/detail/MultiBitVec.hpp index 269fb85..6db1065 100644 --- a/include/chilbert/detail/MultiBitVec.hpp +++ b/include/chilbert/detail/MultiBitVec.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_MULTIBITVEC_HPP -#define CHILBERT_MULTIBITVEC_HPP +#ifndef CHILBERT_DETAIL_MULTIBITVEC_HPP +#define CHILBERT_DETAIL_MULTIBITVEC_HPP #include "chilbert/detail/BitVecIndex.hpp" #include "chilbert/detail/BitVecIterator.hpp" diff --git a/include/chilbert/detail/gray_code_rank.hpp b/include/chilbert/detail/gray_code_rank.hpp index 03c1169..b6811ff 100644 --- a/include/chilbert/detail/gray_code_rank.hpp +++ b/include/chilbert/detail/gray_code_rank.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_GRAYCODERANK_HPP -#define CHILBERT_GRAYCODERANK_HPP +#ifndef CHILBERT_DETAIL_GRAY_CODE_RANK_HPP +#define CHILBERT_DETAIL_GRAY_CODE_RANK_HPP #include <cassert> #include <cstddef> diff --git a/include/chilbert/detail/operations.hpp b/include/chilbert/detail/operations.hpp index 398944f..a196ba4 100644 --- a/include/chilbert/detail/operations.hpp +++ b/include/chilbert/detail/operations.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_OPERATIONS_HPP -#define CHILBERT_OPERATIONS_HPP +#ifndef CHILBERT_DETAIL_OPERATIONS_HPP +#define CHILBERT_DETAIL_OPERATIONS_HPP #include "chilbert/detail/traits.hpp" #include "chilbert/operators.hpp" diff --git a/include/chilbert/detail/traits.hpp b/include/chilbert/detail/traits.hpp index 0cb0f03..3e3f4d2 100644 --- a/include/chilbert/detail/traits.hpp +++ b/include/chilbert/detail/traits.hpp @@ -16,8 +16,8 @@ this program. If not, see <https://www.gnu.org/licenses/>. */ -#ifndef CHILBERT_TRAITS_HPP -#define CHILBERT_TRAITS_HPP +#ifndef CHILBERT_DETAIL_TRAITS_HPP +#define CHILBERT_DETAIL_TRAITS_HPP namespace chilbert { namespace detail { |