Changeset 65261 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 12, 2017 11:39:30 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/EbmlWriter.cpp
r65259 r65261 125 125 inline Ebml &subEnd(EbmlClassId classId) 126 126 { 127 #ifdef VBOX_STRICT 127 128 /* Class ID on the top of the stack should match the class ID passed 128 129 * to the function. Otherwise it may mean that we have a bug in the code. … … 131 132 AssertMsg(m_Elements.top().classId == classId, 132 133 ("Ending sub element 0x%x is in wrong order (next to close is 0x%x)\n", classId, m_Elements.top().classId)); 134 #else 135 RT_NOREF(classId); 136 #endif 133 137 134 138 uint64_t uPos = RTFileTell(m_File); … … 565 569 int WriteBlock(WebMWriter::BlockType blockType, const void *pvData, size_t cbData) 566 570 { 571 RT_NOREF(cbData); /* Only needed for assertions for now. */ 572 567 573 int rc; 568 574
Note:
See TracChangeset
for help on using the changeset viewer.