]> git.lyx.org Git - lyx.git/blobdiff - src/support/lstrings.h
Transfer tempName() implementation to FileName.
[lyx.git] / src / support / lstrings.h
index 016331f27bf76ab1f3d570812a4e4e5fe1ed3da8..381e818f763336286fa3d1836ad3980a90b9d0e7 100644 (file)
@@ -18,7 +18,6 @@
 
 #include "support/docstring.h"
 
-#include <cstring>
 #include <string>
 #include <vector>
 
@@ -36,13 +35,6 @@ int compare_ascii_no_case(std::string const & s, std::string const & s2);
 /// Compare \p s and \p s2, ignoring the case of ASCII characters only.
 int compare_ascii_no_case(docstring const & s, docstring const & s2);
 
-///
-inline int compare(char const * a, char const * b)
-{
-       using namespace std;
-       return strcmp(a, b);
-}
-
 ///
 bool isStrInt(std::string const & str);