Skip to content

Commit

Permalink
Merge pull request #6 from nordlow/use-throwable
Browse files Browse the repository at this point in the history
Thanks!
  • Loading branch information
ikod authored Oct 26, 2021
2 parents 1ce9934 + a64b03f commit 6aabba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ikod/containers/internal.d
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ debug(cachetools) @safe @nogc
}
catch(Exception e)
{
() @trusted @nogc nothrow {try{errorf("[%x] %s:%d Exception: %s", Thread.getThis().id(), file, line, e);}catch{}}();
() @trusted @nogc nothrow {try{errorf("[%x] %s:%d Exception: %s", Thread.getThis().id(), file, line, e);}catch(Throwable) {}}();
}
}
}
}
}

bool UseGCRanges(T)() {
Expand Down

0 comments on commit 6aabba3

Please sign in to comment.