clover: Name include guards consistently.

Tested-by: Tom Stellard <thomas.stellard@amd.com>
This commit is contained in:
Francisco Jerez 2013-09-15 15:29:34 -07:00
parent 8e14b82fd2
commit 099d281b38
17 changed files with 34 additions and 34 deletions

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CL_UTIL_HPP_
#define _CL_UTIL_HPP_
#ifndef CLOVER_API_UTIL_HPP
#define CLOVER_API_UTIL_HPP
#include <cstdint>
#include <cstring>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_BASE_HPP_
#define _CORE_BASE_HPP_
#ifndef CLOVER_CORE_BASE_HPP
#define CLOVER_CORE_BASE_HPP
#include <stdexcept>
#include <atomic>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_COMPAT_HPP_
#define _CORE_COMPAT_HPP_
#ifndef CLOVER_CORE_COMPAT_HPP
#define CLOVER_CORE_COMPAT_HPP
#include <new>
#include <cstring>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_COMPILER_HPP_
#define _CORE_COMPILER_HPP_
#ifndef CLOVER_CORE_COMPILER_HPP
#define CLOVER_CORE_COMPILER_HPP
#include "core/compat.hpp"
#include "core/module.hpp"

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_CONTEXT_HPP_
#define _CORE_CONTEXT_HPP_
#ifndef CLOVER_CORE_CONTEXT_HPP
#define CLOVER_CORE_CONTEXT_HPP
#include "core/base.hpp"
#include "core/device.hpp"

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_DEVICE_HPP_
#define _CORE_DEVICE_HPP_
#ifndef CLOVER_CORE_DEVICE_HPP
#define CLOVER_CORE_DEVICE_HPP
#include <set>
#include <vector>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_EVENT_HPP_
#define _CORE_EVENT_HPP_
#ifndef CLOVER_CORE_EVENT_HPP
#define CLOVER_CORE_EVENT_HPP
#include <functional>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_FORMAT_HPP_
#define _CORE_FORMAT_HPP_
#ifndef CLOVER_CORE_FORMAT_HPP
#define CLOVER_CORE_FORMAT_HPP
#include <set>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_GEOMETRY_HPP_
#define _CORE_GEOMETRY_HPP_
#ifndef CLOVER_CORE_GEOMETRY_HPP
#define CLOVER_CORE_GEOMETRY_HPP
#include <array>
#include <algorithm>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_KERNEL_HPP_
#define _CORE_KERNEL_HPP_
#ifndef CLOVER_CORE_KERNEL_HPP
#define CLOVER_CORE_KERNEL_HPP
#include <memory>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_MEMORY_HPP_
#define _CORE_MEMORY_HPP_
#ifndef CLOVER_CORE_MEMORY_HPP
#define CLOVER_CORE_MEMORY_HPP
#include <functional>
#include <map>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_MODULE_HPP_
#define _CORE_MODULE_HPP_
#ifndef CLOVER_CORE_MODULE_HPP
#define CLOVER_CORE_MODULE_HPP
#include "core/compat.hpp"

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_PLATFORM_HPP_
#define _CORE_PLATFORM_HPP_
#ifndef CLOVER_CORE_PLATFORM_HPP
#define CLOVER_CORE_PLATFORM_HPP
#include <vector>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_PROGRAM_HPP_
#define _CORE_PROGRAM_HPP_
#ifndef CLOVER_CORE_PROGRAM_HPP
#define CLOVER_CORE_PROGRAM_HPP
#include <map>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_QUEUE_HPP_
#define _CORE_QUEUE_HPP_
#ifndef CLOVER_CORE_QUEUE_HPP
#define CLOVER_CORE_QUEUE_HPP
#include "core/base.hpp"
#include "core/context.hpp"

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_RESOURCE_HPP_
#define _CORE_RESOURCE_HPP_
#ifndef CLOVER_CORE_RESOURCE_HPP
#define CLOVER_CORE_RESOURCE_HPP
#include <list>

View file

@ -20,8 +20,8 @@
// OTHER DEALINGS IN THE SOFTWARE.
//
#ifndef _CORE_SAMPLER_HPP_
#define _CORE_SAMPLER_HPP_
#ifndef CLOVER_CORE_SAMPLER_HPP
#define CLOVER_CORE_SAMPLER_HPP
#include "core/base.hpp"
#include "core/queue.hpp"