include time.h in QUtil.hh

QUtil.hh needs time.h to get time_t on some platforms. Thanks Peter
Korsgaard <peter@korsgaard.com>
This commit is contained in:
Jay Berkenbilt 2015-05-24 15:34:56 -04:00
parent 5c9c5d537b
commit 857bb208d3
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2015-05-24 Jay Berkenbilt <ejb@ql.org>
* Include time.h in QUtil.hh for time_t
2015-02-21 Jay Berkenbilt <ejb@ql.org>
* Detect loops in Pages structure. Thanks to Gynvael Coldwind and

View File

@ -14,6 +14,7 @@
#include <list>
#include <stdexcept>
#include <stdio.h>
#include <time.h>
class RandomDataProvider;