mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Fixed a 'const' in libsi/si.h
This commit is contained in:
@@ -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)) {
|
||||
|
Reference in New Issue
Block a user