etcpak: Modify include guard tokens to conform to the C and C++ standards by not using underscore prefixes.

git-svn-id: https://svn.eduke32.com/eduke32@5684 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-03-28 05:15:52 +00:00
parent a98e36e095
commit 6fb3ac4fab
6 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
#ifndef __DARKRL__MATH_HPP__
#define __DARKRL__MATH_HPP__
#ifndef DARKRL__MATH_HPP__
#define DARKRL__MATH_HPP__
#include <algorithm>

View file

@ -1,5 +1,5 @@
#ifndef __PROCESSCOMMON_HPP__
#define __PROCESSCOMMON_HPP__
#ifndef PROCESSCOMMON_HPP__
#define PROCESSCOMMON_HPP__
#include <assert.h>
#include <stddef.h>

View file

@ -1,5 +1,5 @@
#ifndef __PROCESSRGB_HPP__
#define __PROCESSRGB_HPP__
#ifndef PROCESSRGB_HPP__
#define PROCESSRGB_HPP__
#include "Types.hpp"

View file

@ -1,5 +1,5 @@
#ifndef __TABLES_HPP__
#define __TABLES_HPP__
#ifndef TABLES_HPP__
#define TABLES_HPP__
#include "Types.hpp"

View file

@ -1,5 +1,5 @@
#ifndef __DARKRL__TYPES_HPP__
#define __DARKRL__TYPES_HPP__
#ifndef DARKRL__TYPES_HPP__
#define DARKRL__TYPES_HPP__
#include <cstdint>

View file

@ -1,5 +1,5 @@
#ifndef __DARKRL__VECTOR_HPP__
#define __DARKRL__VECTOR_HPP__
#ifndef DARKRL__VECTOR_HPP__
#define DARKRL__VECTOR_HPP__
#include <assert.h>
#include <algorithm>