From 2e37c25acbcc2dce7129738577b351a8b98fd0ba Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 25 Jul 2015 02:21:03 -0400 Subject: [PATCH] Removed VC 6.0 dummy function parameter that was also used as a template parametr. Cleared 8 "unused paramter" warnings --- algparam.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/algparam.h b/algparam.h index 894a3540..af853c1b 100644 --- a/algparam.h +++ b/algparam.h @@ -158,7 +158,7 @@ private: }; template -GetValueHelperClass GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL, BASE *dummy=NULL) +GetValueHelperClass GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL) { return GetValueHelperClass(pObject, name, valueType, pValue, searchFirst); } @@ -220,7 +220,7 @@ private: }; template -AssignFromHelperClass AssignFromHelper(T *pObject, const NameValuePairs &source, BASE *dummy=NULL) +AssignFromHelperClass AssignFromHelper(T *pObject, const NameValuePairs &source) { return AssignFromHelperClass(pObject, source); }