remove explicit `nothrow` from `globMatchEditorConfig`

The in contract may throw.
This commit is contained in:
Nicholas Wilson 2024-08-21 15:45:44 +08:00 committed by Mathias LANG
parent 0ea0572e86
commit d8e43e23ec
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import std.path : filenameCharCmp, isDirSeparator;
// * changes meaning to match all characters except '/'
// ** added to take over the old meaning of *
bool globMatchEditorConfig(CaseSensitive cs = CaseSensitive.osDefault, C, Range)(
Range path, const(C)[] pattern) @safe pure nothrow
Range path, const(C)[] pattern) @safe pure
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range)
&& isSomeChar!C && is(Unqual!C == Unqual!(ElementEncodingType!Range)))
in