diff options
author | sfan5 <sfan5@live.de> | 2022-02-26 11:38:43 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-02-26 12:11:27 +0100 |
commit | df908ef4eaa7fd3292faa34d690edce40106da3c (patch) | |
tree | 7b8904f8bd7714768831ecfbe7c1c54a3e65549e /source/Irrlicht/SoftwareDriver2_compile_config.h | |
parent | 01586f584aef460686c9ac7a59900ea90eb23fe8 (diff) | |
download | irrlicht-df908ef4eaa7fd3292faa34d690edce40106da3c.tar.xz |
Get rid of various old compiler and platform checks
Diffstat (limited to 'source/Irrlicht/SoftwareDriver2_compile_config.h')
-rw-r--r-- | source/Irrlicht/SoftwareDriver2_compile_config.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/source/Irrlicht/SoftwareDriver2_compile_config.h b/source/Irrlicht/SoftwareDriver2_compile_config.h deleted file mode 100644 index 8f46869..0000000 --- a/source/Irrlicht/SoftwareDriver2_compile_config.h +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (C) 2002-2012 Nikolaus Gebhardt / Thomas Alten
-// This file is part of the "Irrlicht Engine".
-// For conditions of distribution and use, see copyright notice in irrlicht.h
-
-#ifndef __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
-#define __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
-
-#include "IrrCompileConfig.h"
-
-#ifndef REALINLINE
-#ifdef _MSC_VER
-#define REALINLINE __forceinline
-#else
-#define REALINLINE inline
-#endif
-#endif
-
-//! Size of a static C-style array.
-#define array_size(_arr) ((sizeof(_arr)/sizeof(*_arr)))
-
-//! Compiler Align
-#if defined(_MSC_VER)
-#define ALIGN(x) __declspec(align(x))
-#elif defined(__GNUC__)
-#define ALIGN(x) __attribute__ ((aligned(x)))
-#else
-#define ALIGN(x)
-#endif
-
-#endif // __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
|