renamed algorithms.hpp to algotithm.hpp

This commit is contained in:
Magnus Auvinen 2009-06-15 06:50:47 +00:00
parent 6309d7ad56
commit f9ef0293ff
2 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -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 <class T, class ALLOCATOR = allocator_default<T> >