This commit is contained in:
King_DuckZ 2020-02-17 22:17:06 +01:00
commit 4bc0157dcd
3020 changed files with 129849 additions and 76185 deletions

View file

@ -16,7 +16,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*
* $Id: XPath2MemoryManagerImpl.hpp 475 2008-01-08 18:47:44Z jpcs $
* $Id: XPath2MemoryManagerImpl.hpp 688 2008-11-27 02:45:23Z caiying $
*/
#ifndef __XPATH2MEMORYMANAGERIMPL_HPP
@ -41,7 +41,11 @@ public:
virtual ~XPath2MemoryManagerImpl();
#if defined(WIN_USE_HEAP)
#if _XERCES_VERSION >= 30000
virtual void *allocate(XMLSize_t numElements);
#else
virtual void *allocate(size_t numElements);
#endif
virtual void deallocate(void* p);
#endif