File diff r28005:30d4958e88dc → r28006:7835d82043ea
src/ini_load.cpp
Show inline comments
 
@@ -189,9 +189,9 @@ IniGroup *IniLoadFile::GetGroup(const st
 
 * Remove the group with the given name.
 
 * @param name name of the group to remove.
 
 */
 
void IniLoadFile::RemoveGroup(const char *name)
 
void IniLoadFile::RemoveGroup(const std::string &name)
 
{
 
	size_t len = strlen(name);
 
	size_t len = name.length();
 
	IniGroup *prev = nullptr;
 
	IniGroup *group;