Removed VC 6.0 dummy function parameter that was also used as a template parametr. Cleared 8 "unused paramter" warnings

pull/35/head
Jeffrey Walton 2015-07-25 02:21:03 -04:00
parent d3b2c03e4e
commit 2e37c25acb
1 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ private:
}; };
template <class BASE, class T> template <class BASE, class T>
GetValueHelperClass<T, BASE> GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL, BASE *dummy=NULL) GetValueHelperClass<T, BASE> GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL)
{ {
return GetValueHelperClass<T, BASE>(pObject, name, valueType, pValue, searchFirst); return GetValueHelperClass<T, BASE>(pObject, name, valueType, pValue, searchFirst);
} }
@ -220,7 +220,7 @@ private:
}; };
template <class BASE, class T> template <class BASE, class T>
AssignFromHelperClass<T, BASE> AssignFromHelper(T *pObject, const NameValuePairs &source, BASE *dummy=NULL) AssignFromHelperClass<T, BASE> AssignFromHelper(T *pObject, const NameValuePairs &source)
{ {
return AssignFromHelperClass<T, BASE>(pObject, source); return AssignFromHelperClass<T, BASE>(pObject, source);
} }