mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
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:
parent
a98e36e095
commit
6fb3ac4fab
6 changed files with 12 additions and 12 deletions
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DARKRL__MATH_HPP__
|
||||
#define __DARKRL__MATH_HPP__
|
||||
#ifndef DARKRL__MATH_HPP__
|
||||
#define DARKRL__MATH_HPP__
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PROCESSCOMMON_HPP__
|
||||
#define __PROCESSCOMMON_HPP__
|
||||
#ifndef PROCESSCOMMON_HPP__
|
||||
#define PROCESSCOMMON_HPP__
|
||||
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __PROCESSRGB_HPP__
|
||||
#define __PROCESSRGB_HPP__
|
||||
#ifndef PROCESSRGB_HPP__
|
||||
#define PROCESSRGB_HPP__
|
||||
|
||||
#include "Types.hpp"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __TABLES_HPP__
|
||||
#define __TABLES_HPP__
|
||||
#ifndef TABLES_HPP__
|
||||
#define TABLES_HPP__
|
||||
|
||||
#include "Types.hpp"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __DARKRL__TYPES_HPP__
|
||||
#define __DARKRL__TYPES_HPP__
|
||||
#ifndef DARKRL__TYPES_HPP__
|
||||
#define DARKRL__TYPES_HPP__
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue