From 46e5aed0bf2645fb640b08c148b518590c95253a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 5 Aug 2018 12:29:34 +0200 Subject: Fix use of reserved identifiers for include guards --- chilbert/Algorithm.hpp | 4 ++-- chilbert/BigBitVec.hpp | 4 ++-- chilbert/FixBitVec.hpp | 4 ++-- chilbert/GetBits.hpp | 4 ++-- chilbert/GetLocation.hpp | 4 ++-- chilbert/GrayCodeRank.hpp | 4 ++-- chilbert/Hilbert.hpp | 4 ++-- chilbert/Operations.hpp | 4 ++-- chilbert/SetBits.hpp | 4 ++-- chilbert/SetLocation.hpp | 4 ++-- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/chilbert/Algorithm.hpp b/chilbert/Algorithm.hpp index 81bd050..f25359a 100644 --- a/chilbert/Algorithm.hpp +++ b/chilbert/Algorithm.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _ALGORITHM_HPP_ -#define _ALGORITHM_HPP_ +#ifndef CHILBERT_ALGORITHM_HPP +#define CHILBERT_ALGORITHM_HPP #include "chilbert/BigBitVec.hpp" diff --git a/chilbert/BigBitVec.hpp b/chilbert/BigBitVec.hpp index 2f924b9..7f812b6 100644 --- a/chilbert/BigBitVec.hpp +++ b/chilbert/BigBitVec.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _BIGBITVEC_HPP_ -#define _BIGBITVEC_HPP_ +#ifndef CHILBERT_BIGBITVEC_HPP +#define CHILBERT_BIGBITVEC_HPP #include "chilbert/FixBitVec.hpp" diff --git a/chilbert/FixBitVec.hpp b/chilbert/FixBitVec.hpp index 06f3455..0a89803 100644 --- a/chilbert/FixBitVec.hpp +++ b/chilbert/FixBitVec.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _FIXBITVEC_HPP_ -#define _FIXBITVEC_HPP_ +#ifndef CHILBERT_FIXBITVEC_HPP +#define CHILBERT_FIXBITVEC_HPP #include "chilbert/Operations.hpp" diff --git a/chilbert/GetBits.hpp b/chilbert/GetBits.hpp index 48428fc..9a6d5ec 100644 --- a/chilbert/GetBits.hpp +++ b/chilbert/GetBits.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _GETBITS_HPP_ -#define _GETBITS_HPP_ +#ifndef CHILBERT_GETBITS_HPP +#define CHILBERT_GETBITS_HPP #include "chilbert/Operations.hpp" diff --git a/chilbert/GetLocation.hpp b/chilbert/GetLocation.hpp index f41171d..06e4b64 100644 --- a/chilbert/GetLocation.hpp +++ b/chilbert/GetLocation.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _GETLOCATION_HPP_ -#define _GETLOCATION_HPP_ +#ifndef CHILBERT_GETLOCATION_HPP +#define CHILBERT_GETLOCATION_HPP #include "chilbert/Operations.hpp" diff --git a/chilbert/GrayCodeRank.hpp b/chilbert/GrayCodeRank.hpp index 13c169c..494caf6 100644 --- a/chilbert/GrayCodeRank.hpp +++ b/chilbert/GrayCodeRank.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _GRAYCODERANK_HPP_ -#define _GRAYCODERANK_HPP_ +#ifndef CHILBERT_GRAYCODERANK_HPP +#define CHILBERT_GRAYCODERANK_HPP #include "chilbert/BigBitVec.hpp" diff --git a/chilbert/Hilbert.hpp b/chilbert/Hilbert.hpp index b6d41b0..a4837dd 100644 --- a/chilbert/Hilbert.hpp +++ b/chilbert/Hilbert.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _HILBERT_HPP_ -#define _HILBERT_HPP_ +#ifndef CHILBERT_HILBERT_HPP +#define CHILBERT_HILBERT_HPP #include "chilbert/FixBitVec.hpp" diff --git a/chilbert/Operations.hpp b/chilbert/Operations.hpp index 01f9197..e4a23b5 100644 --- a/chilbert/Operations.hpp +++ b/chilbert/Operations.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _OPERATIONS_HPP_ -#define _OPERATIONS_HPP_ +#ifndef CHILBERT_OPERATIONS_HPP +#define CHILBERT_OPERATIONS_HPP #include #include diff --git a/chilbert/SetBits.hpp b/chilbert/SetBits.hpp index adca0a0..6b2cd24 100644 --- a/chilbert/SetBits.hpp +++ b/chilbert/SetBits.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _SETBITS_HPP_ -#define _SETBITS_HPP_ +#ifndef CHILBERT_SETBITS_HPP +#define CHILBERT_SETBITS_HPP #include "chilbert/Operations.hpp" diff --git a/chilbert/SetLocation.hpp b/chilbert/SetLocation.hpp index d8dec11..644f53b 100644 --- a/chilbert/SetLocation.hpp +++ b/chilbert/SetLocation.hpp @@ -16,8 +16,8 @@ this program. If not, see . */ -#ifndef _SETLOCATION_HPP_ -#define _SETLOCATION_HPP_ +#ifndef CHILBERT_SETLOCATION_HPP +#define CHILBERT_SETLOCATION_HPP #include "chilbert/Operations.hpp" -- cgit v1.2.1