[NFC] Do not use reserved names for include guards (#1737)

Names that begin with an underscore followed by an uppercase letter
are reserved for the C++ implementation.

Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
This commit is contained in:
Sven van Haastregt
2023-06-09 11:25:20 +01:00
committed by GitHub
parent c8061ab21a
commit 475a37abbf
16 changed files with 46 additions and 47 deletions

View File

@@ -14,8 +14,8 @@
// limitations under the License.
//
#ifndef _TEST_COMPARISONS_FP_H
#define _TEST_COMPARISONS_FP_H
#ifndef TEST_COMPARISONS_FP_H
#define TEST_COMPARISONS_FP_H
#include <map>
#include <memory>
@@ -225,4 +225,4 @@ int MakeAndRunTest(cl_device_id device, cl_context context,
return TEST_PASS;
}
#endif // _TEST_COMPARISONS_FP_H
#endif // TEST_COMPARISONS_FP_H