diff options
Diffstat (limited to 'epg_events.cpp')
-rw-r--r-- | epg_events.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/epg_events.cpp b/epg_events.cpp index fabf033..e4bfde7 100644 --- a/epg_events.cpp +++ b/epg_events.cpp @@ -1,15 +1,16 @@ -#include <time.h> -#include <glob.h> -#include <algorithm> -#include <assert.h> -#include <vdr/player.h> + +#include "epg_events.h" #include "tools.h" #include "recman.h" - -#include "epg_events.h" #include "setup.h" +// STL headers need to be before VDR tools.h (included by <vdr/player.h>) +#include <glob.h> +#include <cassert> + +#include <vdr/player.h> + using namespace std; namespace vdrlive |