diff --git a/Doc/Manual/Preprocessor.html b/Doc/Manual/Preprocessor.html
index c5043aaed..0d5cc6300 100644
--- a/Doc/Manual/Preprocessor.html
+++ b/Doc/Manual/Preprocessor.html
@@ -189,15 +189,15 @@ is also used to try and detect constants. Therefore, if you have something like
-#ifndef _FOO_H 1
-#define _FOO_H 1
+#ifndef FOO_H 1
+#define FOO_H 1
...
#endif
-you may get some extra constants such as _FOO_H showing up in the scripting interface.
+you may get some extra constants such as FOO_H showing up in the scripting interface.
diff --git a/Examples/javascript/nspace/example.h b/Examples/javascript/nspace/example.h
index 53066980a..b2e46e95c 100644
--- a/Examples/javascript/nspace/example.h
+++ b/Examples/javascript/nspace/example.h
@@ -1,5 +1,5 @@
-#ifndef _example_guardian_
-#define _example_guardian_
+#ifndef EXAMPLE_H
+#define EXAMPLE_H
int module_function() { return 7; }
int module_variable = 9;
diff --git a/Examples/lua/nspace/example.h b/Examples/lua/nspace/example.h
index 53066980a..b2e46e95c 100644
--- a/Examples/lua/nspace/example.h
+++ b/Examples/lua/nspace/example.h
@@ -1,5 +1,5 @@
-#ifndef _example_guardian_
-#define _example_guardian_
+#ifndef EXAMPLE_H
+#define EXAMPLE_H
int module_function() { return 7; }
int module_variable = 9;
diff --git a/Examples/ruby/free_function/example.h b/Examples/ruby/free_function/example.h
index 933bb3645..c709cdec1 100644
--- a/Examples/ruby/free_function/example.h
+++ b/Examples/ruby/free_function/example.h
@@ -1,5 +1,5 @@
-#ifndef _EXAMPLE_H_
-#define _EXAMPLE_H_
+#ifndef EXAMPLE_H
+#define EXAMPLE_H
#include
#include
@@ -46,4 +46,4 @@ public:
Animal* get_animal(size_t i) const;
};
-#endif /*_EXAMPLE_H_*/
+#endif /* EXAMPLE_H */
diff --git a/Examples/ruby/mark_function/example.h b/Examples/ruby/mark_function/example.h
index 933bb3645..c709cdec1 100644
--- a/Examples/ruby/mark_function/example.h
+++ b/Examples/ruby/mark_function/example.h
@@ -1,5 +1,5 @@
-#ifndef _EXAMPLE_H_
-#define _EXAMPLE_H_
+#ifndef EXAMPLE_H
+#define EXAMPLE_H
#include
#include
@@ -46,4 +46,4 @@ public:
Animal* get_animal(size_t i) const;
};
-#endif /*_EXAMPLE_H_*/
+#endif /* EXAMPLE_H */
diff --git a/Examples/test-suite/refcount.h b/Examples/test-suite/refcount.h
index 7d07e7242..f3ebbf2ec 100644
--- a/Examples/test-suite/refcount.h
+++ b/Examples/test-suite/refcount.h
@@ -1,5 +1,5 @@
-#ifndef TEST_SUITE_REFCOUNT_H__
-#define TEST_SUITE_REFCOUNT_H__
+#ifndef TEST_SUITE_REFCOUNT_H
+#define TEST_SUITE_REFCOUNT_H
struct RCObjBase {
/*!
@@ -195,4 +195,4 @@ RCPtr& RCPtr::operator=(const RCPtr& rhs)
-#endif //TEST_SUITE_REFCOUNT_H__
+#endif // TEST_SUITE_REFCOUNT_H
diff --git a/Examples/test-suite/template_typedef_cplx2.h b/Examples/test-suite/template_typedef_cplx2.h
index a6ee3c673..a23c319c1 100644
--- a/Examples/test-suite/template_typedef_cplx2.h
+++ b/Examples/test-suite/template_typedef_cplx2.h
@@ -1,5 +1,5 @@
-#ifndef ___typedef_import_h__
-#define ___typedef_import_h__
+#ifndef TEMPLATE_TYPEDEF_CPLX2_H
+#define TEMPLATE_TYPEDEF_CPLX2_H
#ifdef SWIG
%module template_typedef_cplx2;
@@ -174,4 +174,4 @@ namespace vfncs {
#endif
-#endif //___template_typedef_h__
+#endif // TEMPLATE_TYPEDEF_CPLX2_H
diff --git a/Lib/allkw.swg b/Lib/allkw.swg
index 2d3cf6ea9..5e4cb8308 100644
--- a/Lib/allkw.swg
+++ b/Lib/allkw.swg
@@ -1,5 +1,5 @@
-#ifndef __Lib_allkw_swg__
-#define __Lib_allkw_swg__
+#ifndef SWIG_INCLUDED_LIB_ALLKW_SWG
+#define SWIG_INCLUDED_LIB_ALLKW_SWG
/*
@@ -30,4 +30,4 @@
%include
-#endif //__Lib_allkw_swg__
+#endif // SWIG_INCLUDED_LIB_ALLKW_SWG
diff --git a/Lib/octave/octheaders.hpp b/Lib/octave/octheaders.hpp
index abf6428e7..26e5564d4 100644
--- a/Lib/octave/octheaders.hpp
+++ b/Lib/octave/octheaders.hpp
@@ -9,8 +9,8 @@
// g++ -c -include octheaders.hpp ...
//
-#if !defined(_SWIG_OCTAVE_OCTHEADERS_HPP)
-#define _SWIG_OCTAVE_OCTHEADERS_HPP
+#if !defined(SWIG_OCTAVE_OCTHEADERS_HPP)
+#define SWIG_OCTAVE_OCTHEADERS_HPP
// Required C++ headers
#include
@@ -127,4 +127,4 @@
#include
#endif
-#endif // !defined(_SWIG_OCTAVE_OCTHEADERS_HPP)
+#endif // !defined(SWIG_OCTAVE_OCTHEADERS_HPP)
diff --git a/Source/CParse/cparse.h b/Source/CParse/cparse.h
index 0d9ca4b9d..ca8127741 100644
--- a/Source/CParse/cparse.h
+++ b/Source/CParse/cparse.h
@@ -11,8 +11,8 @@
* SWIG parser module.
* ----------------------------------------------------------------------------- */
-#ifndef SWIG_CPARSE_H_
-#define SWIG_CPARSE_H_
+#ifndef SWIG_CPARSE_H
+#define SWIG_CPARSE_H
#include "swig.h"
#include "swigwarn.h"
diff --git a/Source/DOH/doh.h b/Source/DOH/doh.h
index af6b99664..7631e4ed4 100644
--- a/Source/DOH/doh.h
+++ b/Source/DOH/doh.h
@@ -11,8 +11,8 @@
* This file describes of the externally visible functions in DOH.
* ----------------------------------------------------------------------------- */
-#ifndef _DOH_H
-#define _DOH_H
+#ifndef SWIG_DOH_H
+#define SWIG_DOH_H
#ifndef MACSWIG
#include "swigconfig.h"
@@ -503,4 +503,4 @@ extern void DohMemoryDebug(void);
# pragma GCC poison abort exit
#endif
-#endif /* DOH_H */
+#endif /* SWIG_DOH_H */
diff --git a/Source/DOH/dohint.h b/Source/DOH/dohint.h
index 87def9d3d..a1974ff76 100644
--- a/Source/DOH/dohint.h
+++ b/Source/DOH/dohint.h
@@ -11,8 +11,8 @@
* This file describes internally managed objects.
* ----------------------------------------------------------------------------- */
-#ifndef _DOHINT_H
-#define _DOHINT_H
+#ifndef SWIG_DOHINT_H
+#define SWIG_DOHINT_H
#include "doh.h"
@@ -128,4 +128,4 @@ typedef struct {
extern DOH *DohObjMalloc(DohObjInfo *type, void *data); /* Allocate a DOH object */
extern void DohObjFree(DOH *ptr); /* Free a DOH object */
-#endif /* DOHINT_H */
+#endif /* SWIG_DOHINT_H */
diff --git a/Source/Doxygen/doxyentity.h b/Source/Doxygen/doxyentity.h
index 93737e604..c18a59b53 100644
--- a/Source/Doxygen/doxyentity.h
+++ b/Source/Doxygen/doxyentity.h
@@ -11,8 +11,8 @@
* Part of the Doxygen comment translation module of SWIG.
* ----------------------------------------------------------------------------- */
-#ifndef DOXYGENENTITY_H_
-#define DOXYGENENTITY_H_
+#ifndef SWIG_DOXYENTITY_H
+#define SWIG_DOXYENTITY_H
#include
#include
diff --git a/Source/Doxygen/doxyparser.h b/Source/Doxygen/doxyparser.h
index 7a7d5c4f2..c099f23dd 100644
--- a/Source/Doxygen/doxyparser.h
+++ b/Source/Doxygen/doxyparser.h
@@ -9,8 +9,8 @@
* doxyparser.h
* ----------------------------------------------------------------------------- */
-#ifndef DOXYGENPARSER_H_
-#define DOXYGENPARSER_H_
+#ifndef SWIG_DOXYPARSER_H
+#define SWIG_DOXYPARSER_H
#include
#include
#include