From 3a6ebcc050c7ee941e5d5ea243f59827d113d968 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 11 Dec 2016 13:10:56 -0500 Subject: [PATCH 1/1] Convert C-header includes to C++ variants in C++ files --- Source/Audio/openal_wrapper.cpp | 6 +++--- Source/Graphic/Models.hpp | 6 +++--- Source/MacCompatibility.cpp | 10 +++++----- Source/Math/Random.hpp | 2 +- Source/Utils/ImageIO.hpp | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Source/Audio/openal_wrapper.cpp b/Source/Audio/openal_wrapper.cpp index bcc5d73..90b49d7 100644 --- a/Source/Audio/openal_wrapper.cpp +++ b/Source/Audio/openal_wrapper.cpp @@ -24,9 +24,9 @@ along with Lugaru. If not, see . #include "Game.hpp" #include "Math/Quaternions.hpp" -#include -#include -#include +#include +#include +#include extern float slomofreq; diff --git a/Source/Graphic/Models.hpp b/Source/Graphic/Models.hpp index 621a9af..27f3c7d 100644 --- a/Source/Graphic/Models.hpp +++ b/Source/Graphic/Models.hpp @@ -27,9 +27,9 @@ along with Lugaru. If not, see . #include "Math/Quaternions.hpp" #include "Utils/binio.h" -#include -#include -#include +#include +#include +#include #include // diff --git a/Source/MacCompatibility.cpp b/Source/MacCompatibility.cpp index ac0e63c..65a4c5f 100644 --- a/Source/MacCompatibility.cpp +++ b/Source/MacCompatibility.cpp @@ -20,11 +20,11 @@ along with Lugaru. If not, see . #include "MacCompatibility.hpp" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #ifdef WIN32 #include diff --git a/Source/Math/Random.hpp b/Source/Math/Random.hpp index 430023c..f4b6623 100644 --- a/Source/Math/Random.hpp +++ b/Source/Math/Random.hpp @@ -21,7 +21,7 @@ along with Lugaru. If not, see . #ifndef _RANDOM_HPP_ #define _RANDOM_HPP_ -#include +#include static inline short Random() { diff --git a/Source/Utils/ImageIO.hpp b/Source/Utils/ImageIO.hpp index 6b43bad..18a891e 100644 --- a/Source/Utils/ImageIO.hpp +++ b/Source/Utils/ImageIO.hpp @@ -25,9 +25,9 @@ along with Lugaru. If not, see . #pragma once #endif -#include -#include -#include +#include +#include +#include #ifdef WIN32 #define WIN32_LEAN_AND_MEAN -- 2.39.2