Fix template instantiation bug

This commit is contained in:
Elias Batek 2025-02-11 05:29:55 +01:00
parent af25bbbed4
commit 5a3a16a150
1 changed files with 2 additions and 2 deletions

4
ini.d
View File

@ -1303,7 +1303,7 @@ s2key2 = value no.4
+/
IniParser!(dialect, string) makeIniParser(
IniDialect dialect = IniDialect.defaults,
string = immutable(char)[],
string,
)(
string rawIni,
) @safe pure nothrow @nogc if (isCompatibleString!string) {
@ -1338,7 +1338,7 @@ IniParser!(dialect, string) makeIniParser(
+/
IniFilteredParser!(dialect, string) makeIniFilteredParser(
IniDialect dialect = IniDialect.defaults,
string = immutable(char)[],
string,
)(
string rawIni,
) @safe pure nothrow @nogc if (isCompatibleString!string) {