aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-20 02:53:08 -0400
committerJack Lloyd <[email protected]>2017-09-20 02:53:08 -0400
commit8731d4920fa8b17374a442d62c2d8c1c6d34967a (patch)
tree0a0e98cf0c50e502397d920d8d4aa66f0036ce90 /src/tests
parentf7927e4081f1029e0b9c735cfff12ab1fc5f05b8 (diff)
Change header guard format to BOTAN_FOO_H_
ISO C++ reserves names with double underscores in them Closes #512
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_pkcs11.h4
-rw-r--r--src/tests/test_pubkey.h4
-rw-r--r--src/tests/test_rng.h4
-rw-r--r--src/tests/tests.h4
4 files changed, 8 insertions, 8 deletions
diff --git a/src/tests/test_pkcs11.h b/src/tests/test_pkcs11.h
index 8606612d3..a070c5f39 100644
--- a/src/tests/test_pkcs11.h
+++ b/src/tests/test_pkcs11.h
@@ -4,8 +4,8 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#ifndef BOTAN_TESTS_PKCS11_H__
-#define BOTAN_TESTS_PKCS11_H__
+#ifndef BOTAN_TESTS_PKCS11_H_
+#define BOTAN_TESTS_PKCS11_H_
#include "tests.h"
diff --git a/src/tests/test_pubkey.h b/src/tests/test_pubkey.h
index 5d8536496..998654c19 100644
--- a/src/tests/test_pubkey.h
+++ b/src/tests/test_pubkey.h
@@ -4,8 +4,8 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#ifndef BOTAN_TEST_PUBKEY_H__
-#define BOTAN_TEST_PUBKEY_H__
+#ifndef BOTAN_TEST_PUBKEY_H_
+#define BOTAN_TEST_PUBKEY_H_
#include "tests.h"
diff --git a/src/tests/test_rng.h b/src/tests/test_rng.h
index 6e5486440..e3ae4af9b 100644
--- a/src/tests/test_rng.h
+++ b/src/tests/test_rng.h
@@ -5,8 +5,8 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#ifndef BOTAN_TESTS_FIXED_RNG_H__
-#define BOTAN_TESTS_FIXED_RNG_H__
+#ifndef BOTAN_TESTS_FIXED_RNG_H_
+#define BOTAN_TESTS_FIXED_RNG_H_
#include "tests.h"
#include <deque>
diff --git a/src/tests/tests.h b/src/tests/tests.h
index 16b968bd4..32b654bbd 100644
--- a/src/tests/tests.h
+++ b/src/tests/tests.h
@@ -5,8 +5,8 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#ifndef BOTAN_TESTS_H__
-#define BOTAN_TESTS_H__
+#ifndef BOTAN_TESTS_H_
+#define BOTAN_TESTS_H_
#include <botan/build.h>
#include <botan/rng.h>