summaryrefslogtreecommitdiff
path: root/vdr-vdrmanager/helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'vdr-vdrmanager/helpers.h')
-rw-r--r--vdr-vdrmanager/helpers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h
index 073a76c..6019438 100644
--- a/vdr-vdrmanager/helpers.h
+++ b/vdr-vdrmanager/helpers.h
@@ -11,7 +11,7 @@
#include <iostream>
#include <iomanip>
#include <sstream>
-#include <stack>
+#include <queue>
using namespace std;
@@ -60,6 +60,6 @@ private:
static int RecordingLengthInSeconds(cRecording* recording);
static string ConvertWeekdays(int v);
static int ConvertWeekdays(string v);
- static stack<int> ConvertToBinary(int v);
+ static queue<int> ConvertToBinary(int v);
};