summaryrefslogtreecommitdiff
path: root/src/bindings
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2019-04-24 15:39:24 -0700
committerAndres Noetzli <andres.noetzli@gmail.com>2019-04-24 15:39:24 -0700
commit2ab48defab1f0c8918cd7612c1943be7503e4d30 (patch)
treeab8fafc614f5fceef133a3a32f27a0fddcd3c717 /src/bindings
parent5f716f5aac730f976eac538cfbf47dcc651e54f7 (diff)
Do not use __ prefix for header guards. (#2974)
Fixes 2887.
Diffstat (limited to 'src/bindings')
-rw-r--r--src/bindings/java_iterator_adapter.h6
-rw-r--r--src/bindings/java_stream_adapters.h6
-rw-r--r--src/bindings/swig.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/bindings/java_iterator_adapter.h b/src/bindings/java_iterator_adapter.h
index d164fe563..bf1b22e1b 100644
--- a/src/bindings/java_iterator_adapter.h
+++ b/src/bindings/java_iterator_adapter.h
@@ -27,8 +27,8 @@
# error This should only be included from the Java bindings layer.
#endif /* SWIGJAVA */
-#ifndef __CVC4__BINDINGS__JAVA_ITERATOR_ADAPTER_H
-#define __CVC4__BINDINGS__JAVA_ITERATOR_ADAPTER_H
+#ifndef CVC4__BINDINGS__JAVA_ITERATOR_ADAPTER_H
+#define CVC4__BINDINGS__JAVA_ITERATOR_ADAPTER_H
namespace CVC4 {
@@ -56,4 +56,4 @@ public:
}/* CVC4 namespace */
-#endif /* __CVC4__BINDINGS__JAVA_ITERATOR_ADAPTER_H */
+#endif /* CVC4__BINDINGS__JAVA_ITERATOR_ADAPTER_H */
diff --git a/src/bindings/java_stream_adapters.h b/src/bindings/java_stream_adapters.h
index d88f34ca6..f2e89c004 100644
--- a/src/bindings/java_stream_adapters.h
+++ b/src/bindings/java_stream_adapters.h
@@ -37,8 +37,8 @@
#include <string>
#include <jni.h>
-#ifndef __CVC4__BINDINGS__JAVA_STREAM_ADAPTERS_H
-#define __CVC4__BINDINGS__JAVA_STREAM_ADAPTERS_H
+#ifndef CVC4__BINDINGS__JAVA_STREAM_ADAPTERS_H
+#define CVC4__BINDINGS__JAVA_STREAM_ADAPTERS_H
namespace CVC4 {
@@ -105,4 +105,4 @@ public:
}/* CVC4 namespace */
-#endif /* __CVC4__BINDINGS__JAVA_STREAM_ADAPTERS_H */
+#endif /* CVC4__BINDINGS__JAVA_STREAM_ADAPTERS_H */
diff --git a/src/bindings/swig.h b/src/bindings/swig.h
index eb05cc080..81f197d5f 100644
--- a/src/bindings/swig.h
+++ b/src/bindings/swig.h
@@ -14,8 +14,8 @@
** Common swig checks and definitions, when generating swig interfaces.
**/
-#ifndef __CVC4__BINDINGS__SWIG_H
-#define __CVC4__BINDINGS__SWIG_H
+#ifndef CVC4__BINDINGS__SWIG_H
+#define CVC4__BINDINGS__SWIG_H
#ifndef SWIG
# error This file should only be included when generating swig interfaces.
@@ -30,4 +30,4 @@
// swig doesn't like GCC attributes
#define __attribute__(x)
-#endif /* __CVC4__BINDINGS__SWIG_H */
+#endif /* CVC4__BINDINGS__SWIG_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback