From f9ef0293ff882b97cfe650e92fe0844c8920f4e3 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Mon, 15 Jun 2009 06:50:47 +0000 Subject: [PATCH] renamed algorithms.hpp to algotithm.hpp --- src/base/tl/{algorithms.hpp => algorithm.hpp} | 4 ++-- src/base/tl/sorted_array.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/base/tl/{algorithms.hpp => algorithm.hpp} (97%) diff --git a/src/base/tl/algorithms.hpp b/src/base/tl/algorithm.hpp similarity index 97% rename from src/base/tl/algorithms.hpp rename to src/base/tl/algorithm.hpp index 15e8e8a9b..9d78810b2 100644 --- a/src/base/tl/algorithms.hpp +++ b/src/base/tl/algorithm.hpp @@ -1,5 +1,5 @@ -#ifndef TL_FILE_ALGORITHMS_HPP -#define TL_FILE_ALGORITHMS_HPP +#ifndef TL_FILE_ALGORITHM_HPP +#define TL_FILE_ALGORITHM_HPP #include "range.hpp" diff --git a/src/base/tl/sorted_array.hpp b/src/base/tl/sorted_array.hpp index bb09aba91..30c1df24e 100644 --- a/src/base/tl/sorted_array.hpp +++ b/src/base/tl/sorted_array.hpp @@ -1,7 +1,7 @@ #ifndef TL_FILE_SORTED_ARRAY_HPP #define TL_FILE_SORTED_ARRAY_HPP -#include "algorithms.hpp" +#include "algorithm.hpp" #include "array.hpp" template >