Member
- Aug
- Threads
- 3
- 31
- 1
- 0
- 6
AD: Mt2009 - Mobile & PC - 30 January 2026 CHECK THE PRESENTATION!
Hey 
I want to implement a Wiki and now I get in the Client Source Stl.h
in the stl_wipe_second Function an Error:
Function:
Following Error:
The error occurs on the line: delete i->second;
Does some1 know how to fix this?
I want to implement a Wiki and now I get in the Client Source Stl.h
in the stl_wipe_second Function an Error:
Function:
template<typename TContainer>
inline void stl_wipe_second(TContainer& container)
{
for (/*TContainer::iterator*/ auto i = container.begin(); i != container.end(); ++i)
{
delete i->second;
}
container.clear();
}
Following Error:
I
" "delete": "_Ty2" cant get converted into "void*".
The error occurs on the line: delete i->second;
Does some1 know how to fix this?

