]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
get builddir!=srcdir compiling working; allow successful make even without noweb...
[lyx.git] / src / DepTable.h
index f19599962933c6726e1296ef0a3af6c9b408705e..675191b08dd100f2ce331e1c520f9f6cba87890d 100644 (file)
@@ -17,8 +17,6 @@
 
 #include "LString.h"
 #include <map>
-using std::map;
-using std::pair;
 
 #ifdef __GNUG__
 #pragma interface
@@ -53,7 +51,8 @@ public:
        void remove_files_with_extension(string const &);
 private:
        ///
-       typedef map<string, pair<unsigned long, unsigned long> > DepList;
+       typedef std::map<string,
+               std::pair<unsigned long, unsigned long> > DepList;
        ///
        DepList deplist;
 };