blob: 1668612d567de88d357952968975abf9fbe18c5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- xml-xalan/c/src/xalanc/PlatformSupport/XalanArrayAllocator.hpp.orig 2004-11-10 19:46:56.846893553 -0500
+++ xml-xalan/c/src/xalanc/PlatformSupport/XalanArrayAllocator.hpp 2004-11-10 19:47:12.901962732 -0500
@@ -170,7 +170,7 @@
ListEntryType& theNewEntry = m_list.back();
// Resize the vector to the appropriate size...
- theNewEntry.second.resize(theBlockSize, VectorType::value_type(0));
+ theNewEntry.second.resize(theBlockSize, typename VectorType::value_type(0));
// Set the number of free spaces accordingly...
theNewEntry.first = theBlockSize - theCount;
|