mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
[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:
committed by
GitHub
parent
c8061ab21a
commit
475a37abbf
@@ -13,8 +13,8 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
#ifndef _TESTNONUNIFORMWORKGROUP_H
|
||||
#define _TESTNONUNIFORMWORKGROUP_H
|
||||
#ifndef TESTNONUNIFORMWORKGROUP_H
|
||||
#define TESTNONUNIFORMWORKGROUP_H
|
||||
|
||||
#include "procs.h"
|
||||
#include <vector>
|
||||
@@ -147,5 +147,4 @@ private:
|
||||
unsigned int _overallCounter;
|
||||
};
|
||||
|
||||
#endif // _TESTNONUNIFORMWORKGROUP_H
|
||||
|
||||
#endif // TESTNONUNIFORMWORKGROUP_H
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//
|
||||
#ifndef _TOOLS_H
|
||||
#define _TOOLS_H
|
||||
#ifndef TOOLS_H
|
||||
#define TOOLS_H
|
||||
|
||||
#include "procs.h"
|
||||
#include <vector>
|
||||
@@ -106,4 +106,4 @@ namespace Error {
|
||||
};
|
||||
|
||||
}
|
||||
#endif // _TOOLS_H
|
||||
#endif // TOOLS_H
|
||||
|
||||
Reference in New Issue
Block a user