summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/tests/test.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bx/tests/test.h')
-rw-r--r--3rdparty/bx/tests/test.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/3rdparty/bx/tests/test.h b/3rdparty/bx/tests/test.h
index 43da95a56d2..7157174de59 100644
--- a/3rdparty/bx/tests/test.h
+++ b/3rdparty/bx/tests/test.h
@@ -1,16 +1,16 @@
/*
- * Copyright 2010-2018 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx#license-bsd-2-clause
+ * Copyright 2010-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bx/blob/master/LICENSE
*/
-#ifndef __TEST_H__
-#define __TEST_H__
+#ifndef BX_TEST_H_HEADER_GUARD
+#define BX_TEST_H_HEADER_GUARD
#include <bx/bx.h>
BX_PRAGMA_DIAGNOSTIC_PUSH();
BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4312); // warning C4312 : 'reinterpret_cast' : conversion from 'int' to 'const char *' of greater size
-#include <catch/catch.hpp>
+#include <catch/catch_amalgamated.hpp>
BX_PRAGMA_DIAGNOSTIC_POP();
#define TEST(_x) TEST_CASE(#_x, "")
@@ -18,4 +18,4 @@ BX_PRAGMA_DIAGNOSTIC_POP();
#include "dbg.h"
-#endif // __TEST_H__
+#endif // BX_TEST_H_HEADER_GUARD