Fixed template references.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Sun, 24 Apr 2005 23:52:32 +0000 (23:52 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Sun, 24 Apr 2005 23:52:32 +0000 (23:52 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@1548 cb58f699-b61c-0410-a6fe-9272a202ed29

apache/mod_apache.cpp
nsapi_shib/nsapi_shib.cpp

index 9b793d1..e2010c2 100644 (file)
@@ -528,13 +528,13 @@ pair<bool,const XMLCh*> ApacheRequestMapper::getXMLString(const char* name, cons
 pair<bool,unsigned int> ApacheRequestMapper::getUnsignedInt(const char* name, const char* ns) const
 {
     const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
-    return s ? s->getUnsignedInt(name,ns) : make_pair(false,0);
+    return s ? s->getUnsignedInt(name,ns) : pair<bool,unsigned int>(false,0);
 }
 
 pair<bool,int> ApacheRequestMapper::getInt(const char* name, const char* ns) const
 {
     const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
-    return s ? s->getInt(name,ns) : make_pair(false,0);
+    return s ? s->getInt(name,ns) : pair<bool,int>(false,0);
 }
 
 const IPropertySet* ApacheRequestMapper::getPropertySet(const char* name, const char* ns) const
index 664c1db..4c79e65 100644 (file)
@@ -504,13 +504,13 @@ pair<bool,const XMLCh*> SunRequestMapper::getXMLString(const char* name, const c
 pair<bool,unsigned int> SunRequestMapper::getUnsignedInt(const char* name, const char* ns) const
 {
     const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
-    return s ? s->getUnsignedInt(name,ns) : make_pair(false,0);
+    return s ? s->getUnsignedInt(name,ns) : pair<bool,unsigned int>(false,0);
 }
 
 pair<bool,int> SunRequestMapper::getInt(const char* name, const char* ns) const
 {
     const IPropertySet* s=reinterpret_cast<const IPropertySet*>(m_propsKey->getData());
-    return s ? s->getInt(name,ns) : make_pair(false,0);
+    return s ? s->getInt(name,ns) : pair<bool,int>(false,0);
 }
 
 const IPropertySet* SunRequestMapper::getPropertySet(const char* name, const char* ns) const