From b35b69671758932989823d1912627c4c2507792c Mon Sep 17 00:00:00 2001 From: Matt McCutchen Date: Mon, 28 Jan 2008 21:18:24 -0500 Subject: [PATCH] Append _H to anti-multiple-inclusion macros. --- BigInteger.hh | 4 ++-- BigIntegerUtils.hh | 4 ++-- BigUnsigned.hh | 4 ++-- BigUnsignedInABase.hh | 4 ++-- NumberlikeArray.hh | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/BigInteger.hh b/BigInteger.hh index 1c56ac5..a76335f 100644 --- a/BigInteger.hh +++ b/BigInteger.hh @@ -1,5 +1,5 @@ -#ifndef BIGINTEGER -#define BIGINTEGER +#ifndef BIGINTEGER_H +#define BIGINTEGER_H #include "BigUnsigned.hh" diff --git a/BigIntegerUtils.hh b/BigIntegerUtils.hh index 84ea3d0..16900f4 100644 --- a/BigIntegerUtils.hh +++ b/BigIntegerUtils.hh @@ -1,5 +1,5 @@ -#ifndef BIGINTEGERUTILS -#define BIGINTEGERUTILS +#ifndef BIGINTEGERUTILS_H +#define BIGINTEGERUTILS_H #include "BigInteger.hh" #include diff --git a/BigUnsigned.hh b/BigUnsigned.hh index 360c341..3af3866 100644 --- a/BigUnsigned.hh +++ b/BigUnsigned.hh @@ -1,5 +1,5 @@ -#ifndef BIGUNSIGNED -#define BIGUNSIGNED +#ifndef BIGUNSIGNED_H +#define BIGUNSIGNED_H #include "NumberlikeArray.hh" diff --git a/BigUnsignedInABase.hh b/BigUnsignedInABase.hh index fd596d7..c279826 100644 --- a/BigUnsignedInABase.hh +++ b/BigUnsignedInABase.hh @@ -1,5 +1,5 @@ -#ifndef BIGUNSIGNEDINABASE -#define BIGUNSIGNEDINABASE +#ifndef BIGUNSIGNEDINABASE_H +#define BIGUNSIGNEDINABASE_H #include "NumberlikeArray.hh" #include "BigUnsigned.hh" diff --git a/NumberlikeArray.hh b/NumberlikeArray.hh index 6beba81..7b49566 100644 --- a/NumberlikeArray.hh +++ b/NumberlikeArray.hh @@ -5,8 +5,8 @@ * already been flagged. If not, it flags the `id' and * loads the declarations. */ -#ifndef NUMBERLIKEARRAY -#define NUMBERLIKEARRAY +#ifndef NUMBERLIKEARRAY_H +#define NUMBERLIKEARRAY_H // An essential memory-management constant. // I wish this were built into C++ just as it is in Java. -- 2.34.1