From f947debf70f626ab2fd9dd1339be5f3d1ce8c671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Osztrogon=C3=A1c?= Date: Fri, 5 Feb 2016 07:40:35 -0800 Subject: [PATCH] Fix typo in an include guard. --- SPIRV/spirv.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/SPIRV/spirv.hpp b/SPIRV/spirv.hpp index 0cc43aa4..65331d24 100755 --- a/SPIRV/spirv.hpp +++ b/SPIRV/spirv.hpp @@ -39,8 +39,8 @@ // "Mask" in their name, and a parallel enum that has the shift // amount (1 << x) for each corresponding enumerant. -#ifndef spirv_H -#define spirv_H +#ifndef spirv_HPP +#define spirv_HPP namespace spv { @@ -874,5 +874,4 @@ inline KernelProfilingInfoMask operator|(KernelProfilingInfoMask a, KernelProfil } // end namespace spv -#endif // #ifndef spirv_H - +#endif // #ifndef spirv_HPP