diff options
Diffstat (limited to 'lib/common.h')
-rw-r--r-- | lib/common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/common.h b/lib/common.h index df1c236..28536ec 100644 --- a/lib/common.h +++ b/lib/common.h @@ -45,7 +45,6 @@ class MemoryStruct; inline long min(long a, long b) { return a < b ? a : b; } inline long max(long a, long b) { return a > b ? a : b; } #else -# define __STL_CONFIG_H # include <vdr/tools.h> #endif @@ -133,7 +132,7 @@ int gunzip(MemoryStruct* zippedData, MemoryStruct* unzippedData); // MemoryStruct //*************************************************************************** -struct MemoryStruct +class MemoryStruct { public: |