remove not used variables from Request
This commit is contained in:
@@ -674,8 +674,6 @@ void Request::AddParam(const wchar_t * param_name, const wchar_t * param_value)
|
||||
|
||||
void Request::RemoveParam(const wchar_t * param_name)
|
||||
{
|
||||
ParamTab::iterator i;
|
||||
|
||||
for(size_t i=0 ; i < param_tab.size() ; )
|
||||
{
|
||||
if( param_tab[i].name == param_name )
|
||||
@@ -692,8 +690,6 @@ void Request::RemoveParam(const wchar_t * param_name)
|
||||
|
||||
void Request::RemoveParam(const std::wstring & param_name)
|
||||
{
|
||||
ParamTab::iterator i;
|
||||
|
||||
for(size_t i=0 ; i < param_tab.size() ; )
|
||||
{
|
||||
if( param_tab[i].name == param_name )
|
||||
|
Reference in New Issue
Block a user