diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-09 16:18:45 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-01-09 16:18:45 +0100 |
commit | 299a600c3ce1ae355842be39d452464e524b7e3b (patch) | |
tree | 1e17e48dcbb62cb1327d61b597bc38652e6eb2ac /libsi | |
parent | 6484771bf61aeabbb0d9fc28e257b50fdf2e205b (diff) | |
download | vdr-299a600c3ce1ae355842be39d452464e524b7e3b.tar.gz vdr-299a600c3ce1ae355842be39d452464e524b7e3b.tar.bz2 |
Fixed a 'const' in libsi/si.h
Diffstat (limited to 'libsi')
-rw-r--r-- | libsi/si.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.h 1.4 2004/01/05 14:54:55 kls Exp $ + * $Id: si.h 1.5 2004/01/09 15:59:53 kls Exp $ * * ***************************************************************************/ @@ -316,7 +316,7 @@ typedef uint64_t SixtyFourBit; template <typename T> class TypeLoop : public Loop { public: - int getCount() const { return getLength()/sizeof(T); } + int getCount() { return getLength()/sizeof(T); } T operator[](const unsigned int index) const { switch (sizeof(T)) { |