From: Matt McCutchen Date: Tue, 29 Jan 2008 02:18:24 +0000 (-0500) Subject: Append _H to anti-multiple-inclusion macros. X-Git-Tag: v2008.07.20~19 X-Git-Url: https://mattmccutchen.net/bigint/bigint.git/commitdiff_plain/b35b69671758932989823d1912627c4c2507792c Append _H to anti-multiple-inclusion macros. --- 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.