aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-05 12:29:34 +0200
committerDavid Robillard <d@drobilla.net>2018-08-07 20:01:24 +0200
commit46e5aed0bf2645fb640b08c148b518590c95253a (patch)
treee368d80c2f278e9b8b4b5d49057624cd44845b14
parent99cf4755e4262dd4ec55979986a289bf6abc7c6d (diff)
downloadchilbert-46e5aed0bf2645fb640b08c148b518590c95253a.tar.gz
chilbert-46e5aed0bf2645fb640b08c148b518590c95253a.tar.bz2
chilbert-46e5aed0bf2645fb640b08c148b518590c95253a.zip
Fix use of reserved identifiers for include guards
-rw-r--r--chilbert/Algorithm.hpp4
-rw-r--r--chilbert/BigBitVec.hpp4
-rw-r--r--chilbert/FixBitVec.hpp4
-rw-r--r--chilbert/GetBits.hpp4
-rw-r--r--chilbert/GetLocation.hpp4
-rw-r--r--chilbert/GrayCodeRank.hpp4
-rw-r--r--chilbert/Hilbert.hpp4
-rw-r--r--chilbert/Operations.hpp4
-rw-r--r--chilbert/SetBits.hpp4
-rw-r--r--chilbert/SetLocation.hpp4
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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#ifndef _OPERATIONS_HPP_
-#define _OPERATIONS_HPP_
+#ifndef CHILBERT_OPERATIONS_HPP
+#define CHILBERT_OPERATIONS_HPP
#include <cassert>
#include <climits>
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 <https://www.gnu.org/licenses/>.
*/
-#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 <https://www.gnu.org/licenses/>.
*/
-#ifndef _SETLOCATION_HPP_
-#define _SETLOCATION_HPP_
+#ifndef CHILBERT_SETLOCATION_HPP
+#define CHILBERT_SETLOCATION_HPP
#include "chilbert/Operations.hpp"