mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
User hyperlinks to refer to bugzilla issues (#8766)
This commit is contained in:
parent
f2ea143b49
commit
5cd77a6e32
17 changed files with 46 additions and 45 deletions
|
@ -550,7 +550,7 @@ Throws: `ErrnoException` if the file could not be opened.
|
|||
stdioOpenmode, "'")),
|
||||
name);
|
||||
|
||||
// MSVCRT workaround (issue 14422)
|
||||
// MSVCRT workaround (https://issues.dlang.org/show_bug.cgi?id=14422)
|
||||
version (MICROSOFT_STDIO)
|
||||
{
|
||||
setAppendWin(stdioOpenmode);
|
||||
|
@ -708,7 +708,7 @@ Throws: `ErrnoException` in case of error.
|
|||
{
|
||||
auto handle = _p.handle;
|
||||
_p.handle = null;
|
||||
// fclose disassociates the FILE* even in case of error (issue 19751)
|
||||
// fclose disassociates the FILE* even in case of error (https://issues.dlang.org/show_bug.cgi?id=19751)
|
||||
errnoEnforce(.fclose(handle) == 0,
|
||||
"Could not close file `"~_name~"'");
|
||||
}
|
||||
|
@ -3795,7 +3795,7 @@ void main()
|
|||
assert(std.file.readText!string(deleteme) == "y");
|
||||
}
|
||||
|
||||
@safe unittest // issue 18801
|
||||
@safe unittest // https://issues.dlang.org/show_bug.cgi?id=18801
|
||||
{
|
||||
static import std.file;
|
||||
import std.string : stripLeft;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue