summaryrefslogtreecommitdiff
path: root/net/easysoap/files/patch-include::SOAPDispatchHandler.h
blob: 865f32000bf5ba255e53cb2c9fcae5bdf63aa924 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- include/easysoap/SOAPDispatchHandler.h.orig	Thu Jun 26 10:06:51 2003
+++ include/easysoap/SOAPDispatchHandler.h	Thu Jun 26 10:07:35 2003
@@ -56,7 +56,7 @@
 	bool ExecuteMethod(const SOAPEnvelope& request, SOAPMethod& response)
 	{
 		const SOAPMethod& method = request.GetBody().GetMethod();
-		DispatchMap::Iterator i = m_dispatchMap.Find(method.GetName());
+		typename DispatchMap::Iterator i = m_dispatchMap.Find(method.GetName());
 		if (i)
 		{
 			T *target= GetTarget(request);
@@ -100,7 +100,7 @@
 
 	bool HandleHeader(const SOAPParameter& header, SOAPEnvelope& request, SOAPEnvelope& response)
 	{
-		DispatchMap::Iterator i = m_dispatchMap.Find(header.GetName());
+		typename DispatchMap::Iterator i = m_dispatchMap.Find(header.GetName());
 
 		if (i)
 		{