]> git.lyx.org Git - lyx.git/blobdiff - src/support/mkdir.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / mkdir.C
index 37fc010e0616fa927662faf8058dbff889e24f23..546bbf8e654f6a3338affdba977dbb8af5ccb2e3 100644 (file)
 #include <fcntl.h>
 #include <unistd.h>
 
-#include "LString.h"
-
 #include "lyxlib.h"
 
-int lyx::support::mkdir(string const & pathname, unsigned long int mode)
+int lyx::support::mkdir(std::string const & pathname, unsigned long int mode)
 {
        // FIXME: why don't we have mode_t in lyx::mkdir prototype ??
        return ::mkdir(pathname.c_str(), mode_t(mode));