[matroska] r1082 - trunk/libebml/ebml
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: robux4
Date: 2005-03-04 23:11:17 +0300 (Fri, 04 Mar 2005)
New Revision: 1082
Modified:
trunk/libebml/ebml/EbmlMaster.h
Log:
avoid a warning in MSVC7
Modified: trunk/libebml/ebml/EbmlMaster.h
===================================================================
--- trunk/libebml/ebml/EbmlMaster.h 2005-03-03 14:19:19 UTC (rev 1081)
+++ trunk/libebml/ebml/EbmlMaster.h 2005-03-04 20:11:17 UTC (rev 1082)
@@ -111,7 +111,7 @@
*/
void Sort();
- unsigned int ListSize() const {return ElementList.size();}
+ size_t ListSize() const {return ElementList.size();}
EbmlElement * operator[](unsigned int position) {return ElementList[position];}
const EbmlElement * operator[](unsigned int position) const {return ElementList[position];}