From 27f0d30f4d3411b5bc13705a1afe75381397e052 Mon Sep 17 00:00:00 2001
From: Alberto Massari <amassari@apache.org>
Date: Tue, 14 Sep 2004 19:47:30 +0000
Subject: [PATCH] The signature for implementation for ArrayJanitor::reset was
 not aligned with the declaration (jira#1261)

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@176042 13f79535-47bb-0310-9956-ffa450edef68
---
 src/xercesc/util/Janitor.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/xercesc/util/Janitor.c b/src/xercesc/util/Janitor.c
index ebb55db1d..496e9de43 100644
--- a/src/xercesc/util/Janitor.c
+++ b/src/xercesc/util/Janitor.c
@@ -16,6 +16,9 @@
 
 /**
  * $Log$
+ * Revision 1.7  2004/09/14 19:47:30  amassari
+ * The signature for implementation for ArrayJanitor::reset was not aligned with the declaration (jira#1261)
+ *
  * Revision 1.6  2004/09/08 13:56:22  peiyongz
  * Apache License Version 2.0
  *
@@ -214,7 +217,7 @@ ArrayJanitor<T>::reset(T* p)
 }
 
 template <class T> void
-ArrayJanitor<T>::reset(T* p, MemoryManager* manager)
+ArrayJanitor<T>::reset(T* p, MemoryManager* const manager)
 {
 	if (fData) {
 
-- 
GitLab