mirror of
https://github.com/dlang/phobos.git
synced 2025-05-11 23:05:34 +03:00
tabs to spaces
This commit is contained in:
parent
42a496af51
commit
04e851716e
103 changed files with 24789 additions and 24786 deletions
12
std/array.d
12
std/array.d
|
@ -13,13 +13,13 @@ class ArrayBoundsError : Error
|
|||
public:
|
||||
this(char[] filename, uint linnum)
|
||||
{
|
||||
this.linnum = linnum;
|
||||
this.filename = filename;
|
||||
this.linnum = linnum;
|
||||
this.filename = filename;
|
||||
|
||||
char[] buffer = new char[19 + filename.length + linnum.sizeof * 3 + 1];
|
||||
int len;
|
||||
len = sprintf(buffer.ptr, "ArrayBoundsError %.*s(%u)", filename, linnum);
|
||||
super(buffer[0..len]);
|
||||
char[] buffer = new char[19 + filename.length + linnum.sizeof * 3 + 1];
|
||||
int len;
|
||||
len = sprintf(buffer.ptr, "ArrayBoundsError %.*s(%u)", filename, linnum);
|
||||
super(buffer[0..len]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue