Skip to content

Commit

Permalink
Merge pull request #7 from kookman/master
Browse files Browse the repository at this point in the history
Deprecation fix: bare `catch` statement
  • Loading branch information
ikod authored Sep 17, 2024
2 parents d0cc899 + aa524b5 commit 506b284
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/nbuff/buffer.d
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ debug(nbuff) @safe @nogc nothrow
{
//debug(nbuff)errorf("[%x] %s:%d Exception: %s", Thread.getThis().id(), file, line, e);
}
catch
catch(Exception e)
{
}
}();
Expand Down Expand Up @@ -2174,4 +2174,4 @@ version(Posix)
}

}
}
}

0 comments on commit 506b284

Please sign in to comment.