Append _H to anti-multiple-inclusion macros.
authorMatt McCutchen <matt@mattmccutchen.net>
Tue, 29 Jan 2008 02:18:24 +0000 (21:18 -0500)
committerMatt McCutchen <matt@mattmccutchen.net>
Tue, 29 Jan 2008 02:23:04 +0000 (21:23 -0500)
BigInteger.hh
BigIntegerUtils.hh
BigUnsigned.hh
BigUnsignedInABase.hh
NumberlikeArray.hh

index 1c56ac5..a76335f 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BIGINTEGER
-#define BIGINTEGER
+#ifndef BIGINTEGER_H
+#define BIGINTEGER_H
 
 #include "BigUnsigned.hh"
 
index 84ea3d0..16900f4 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BIGINTEGERUTILS
-#define BIGINTEGERUTILS
+#ifndef BIGINTEGERUTILS_H
+#define BIGINTEGERUTILS_H
 
 #include "BigInteger.hh"
 #include <string>
index 360c341..3af3866 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BIGUNSIGNED
-#define BIGUNSIGNED
+#ifndef BIGUNSIGNED_H
+#define BIGUNSIGNED_H
 
 #include "NumberlikeArray.hh"
 
index fd596d7..c279826 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef BIGUNSIGNEDINABASE
-#define BIGUNSIGNEDINABASE
+#ifndef BIGUNSIGNEDINABASE_H
+#define BIGUNSIGNEDINABASE_H
 
 #include "NumberlikeArray.hh"
 #include "BigUnsigned.hh"
index 6beba81..7b49566 100644 (file)
@@ -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.