Codechange: Pass initializer list instead of null-terminated list of group types.
This commit is contained in:

committed by
Peter Nelson

parent
1fecbeff76
commit
8bd06807e4
@@ -32,9 +32,9 @@
|
||||
|
||||
/**
|
||||
* Create a new ini file with given group names.
|
||||
* @param list_group_names A \c nullptr terminated list with group names that should be loaded as lists instead of variables. @see IGT_LIST
|
||||
* @param list_group_names A list with group names that should be loaded as lists instead of variables. @see IGT_LIST
|
||||
*/
|
||||
IniFile::IniFile(const char * const *list_group_names) : IniLoadFile(list_group_names)
|
||||
IniFile::IniFile(const IniGroupNameList &list_group_names) : IniLoadFile(list_group_names)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user