Commit 857bb208d338e117f2a864407e34de76da360d8a

Authored by Jay Berkenbilt
1 parent 5c9c5d53

include time.h in QUtil.hh

QUtil.hh needs time.h to get time_t on some platforms. Thanks Peter
Korsgaard <peter@korsgaard.com>
ChangeLog
  1 +2015-05-24 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * Include time.h in QUtil.hh for time_t
  4 +
1 2015-02-21 Jay Berkenbilt <ejb@ql.org> 5 2015-02-21 Jay Berkenbilt <ejb@ql.org>
2 6
3 * Detect loops in Pages structure. Thanks to Gynvael Coldwind and 7 * Detect loops in Pages structure. Thanks to Gynvael Coldwind and
include/qpdf/QUtil.hh
@@ -14,6 +14,7 @@ @@ -14,6 +14,7 @@
14 #include <list> 14 #include <list>
15 #include <stdexcept> 15 #include <stdexcept>
16 #include <stdio.h> 16 #include <stdio.h>
  17 +#include <time.h>
17 18
18 class RandomDataProvider; 19 class RandomDataProvider;
19 20