]> 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 9f2bdf24bba3e888c3d0ede261aa08e8539e0baf..675191b08dd100f2ce331e1c520f9f6cba87890d 100644 (file)
@@ -22,9 +22,6 @@
 #pragma interface
 #endif
 
-using std::map;
-using std::pair;
-
 ///
 class DepTable {
 public:
@@ -54,8 +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;
 };