1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 14:59:54 +00:00

Remove #ifdef guards.

This commit is contained in:
cc9cii 2014-06-06 19:58:05 +10:00
parent 76bf774485
commit fd758bacd3
2 changed files with 2 additions and 8 deletions

View file

@ -36,10 +36,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <map>
#include <list>
#include <limits>
#if defined(_WIN32) && _MSC_VER >= 1800
#include <algorithm> /* std::min and std::max */
#endif
#include <algorithm> /* std::min and std::max for MSVC 2013 */
#include "tinyxml.h"

View file

@ -1,10 +1,7 @@
#ifndef SDL4OGRE_SDLINPUTWRAPPER_H
#define SDL4OGRE_SDLINPUTWRAPPER_H
#if defined(_WIN32) && _MSC_VER >= 1800
#include <algorithm>
#define NOMINMAX
#endif
#include <SDL_events.h>