From 5a3a16a1504be0944798870713ed55ffa46b7748 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Tue, 11 Feb 2025 05:29:55 +0100 Subject: [PATCH] Fix template instantiation bug --- ini.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ini.d b/ini.d index 3580c2d..573a564 100644 --- a/ini.d +++ b/ini.d @@ -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) {