ENH: fix warning on borland
This commit is contained in:
parent
fdff8eb300
commit
0de79d4b2d
|
@ -405,7 +405,10 @@ bool SystemTools::GetEnv(const char* key, kwsys_stl::string& result)
|
|||
class kwsysDeletingCharVector : public kwsys_stl::vector<char*>
|
||||
{
|
||||
public:
|
||||
~kwsysDeletingCharVector()
|
||||
~kwsysDeletingCharVector();
|
||||
};
|
||||
|
||||
kwsysDeletingCharVector::~kwsysDeletingCharVector()
|
||||
{
|
||||
for(kwsys_stl::vector<char*>::iterator i = this->begin();
|
||||
i != this->end(); ++i)
|
||||
|
@ -413,9 +416,6 @@ public:
|
|||
delete []*i;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
bool SystemTools::PutEnv(const char* value)
|
||||
{
|
||||
static kwsysDeletingCharVector localEnvironment;
|
||||
|
|
Loading…
Reference in New Issue