]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxalgo.h
small changes read ChangeLog
[lyx.git] / src / support / lyxalgo.h
index 27cae60bb5ef76dae0816989969857f5f2d27aaa..deaf9531884eb3596b79f3fc81a8b8be4d7b15d0 100644 (file)
@@ -3,13 +3,6 @@
 #ifndef LYX_ALGO_H
 #define LYX_ALGO_H
 
-#include <algorithm>
-
-using std::less;
-
-// Both these functions should ideally be placed into namespace lyx.
-// Also the using std::less should not be used.
-
 //namespace lyx {
 
 /// Returns true if the sequence first,last is sorted, false if not.
@@ -19,7 +12,7 @@ bool sorted(For first, For last)
        if (first == last) return true;
        For tmp = first;
        while (++tmp != last) {
-               if (less(*tmp, *first++)) return false;
+               if (*tmp < *first++) return false;
        }
        return true;
 }