From 3eafc7e746bd8da4de28c3d176697659c1936477 Mon Sep 17 00:00:00 2001 From: mensinda Date: Wed, 6 Apr 2016 16:54:03 +0200 Subject: [PATCH] Renamed Math.h --> MathFunctions.h --- code/IRRLoader.cpp | 4 ++-- code/{Math.h => MathFunctions.h} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename code/{Math.h => MathFunctions.h} (98%) diff --git a/code/IRRLoader.cpp b/code/IRRLoader.cpp index f0944ceb1..fcf894e6a 100644 --- a/code/IRRLoader.cpp +++ b/code/IRRLoader.cpp @@ -56,8 +56,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "StandardShapes.h" #include "Importer.h" -// We need Math.h to compute the lcm/gcd of a number -#include "Math.h" +// We need MathFunctions.h to compute the lcm/gcd of a number +#include "MathFunctions.h" #include #include "../include/assimp/DefaultLogger.hpp" #include "../include/assimp/mesh.h" diff --git a/code/Math.h b/code/MathFunctions.h similarity index 98% rename from code/Math.h rename to code/MathFunctions.h index 57204fc68..cb3b69607 100644 --- a/code/Math.h +++ b/code/MathFunctions.h @@ -39,7 +39,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------- */ -/** @file Math.h +/** @file MathFunctions.h * @brief Implementation of the math functions (gcd and lcm) * * Copied from BoostWorkaround/math