]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.h
bug 183
[lyx.git] / src / DepTable.h
index e7655bc79f17d7631b927a8f81f44a52773dafc3..45c89abfe95b608e2aca40761209d8da493872ae 100644 (file)
@@ -51,8 +51,13 @@ public:
        void remove_files_with_extension(string const &);
 private:
        ///
-       typedef std::map<string,
-               std::pair<unsigned long, unsigned long> > DepList;
+       struct dep_info {
+               unsigned long first;
+               unsigned long second;
+               long mtime;
+       };
+       ///
+       typedef std::map<string, dep_info> DepList;
        ///
        DepList deplist;
 };