Changeset - r11158:8c53f70c974d
[Not reviewed]
master
0 3 0
smatz - 16 years ago 2009-02-17 02:08:53
smatz@openttd.org
(svn r15508) -Fix: three header files had incorrect 'anti-multiple-inclusion' header
3 files changed with 7 insertions and 7 deletions:
0 comments (0 inline, 0 general)
src/core/endian_func.hpp
Show inline comments
 
@@ -2,8 +2,8 @@
 

	
 
/** @file endian_func.hpp Function to handling different endian machines. */
 

	
 
#ifndef ENDIAN_FUNC_H
 
#define ENDIAN_FUNC_H
 
#ifndef ENDIAN_FUNC_HPP
 
#define ENDIAN_FUNC_HPP
 

	
 
#include "endian_type.hpp"
 
#include "bitmath_func.hpp"
src/core/endian_type.hpp
Show inline comments
 
@@ -2,8 +2,8 @@
 

	
 
/** @file endian_type.hpp Definition of various endian-dependant macros. */
 

	
 
#ifndef ENDIAN_TYPE_H
 
#define ENDIAN_TYPE_H
 
#ifndef ENDIAN_TYPE_HPP
 
#define ENDIAN_TYPE_HPP
 

	
 
#if defined(ARM) || defined(__arm__) || defined(__alpha__)
 
	#define OTTD_ALIGNMENT 1
src/misc/dbg_helpers.h
Show inline comments
 
@@ -2,8 +2,8 @@
 

	
 
/** @file dbg_helpers.h Functions to be used for debug printings. */
 

	
 
#ifndef DBG_HELPERS
 
#define DBG_HELPERS
 
#ifndef DBG_HELPERS_H
 
#define DBG_HELPERS_H
 

	
 
#include <new>
 
#include <map>
 
@@ -163,4 +163,4 @@ struct DumpTarget {
 
	}
 
};
 

	
 
#endif /* DBG_HELPERS */
 
#endif /* DBG_HELPERS_H */
0 comments (0 inline, 0 general)