tabs to spaces

This commit is contained in:
Walter Bright 2010-05-22 21:04:09 +00:00
parent 42a496af51
commit 04e851716e
103 changed files with 24789 additions and 24786 deletions

View file

@ -1,9 +1,9 @@
/**
* Macros:
* WIKI=Phobos/StdOutOfMemory
* WIKI=Phobos/StdOutOfMemory
* Copyright:
* Placed into public domain.
* www.digitalmars.com
* Placed into public domain.
* www.digitalmars.com
*/
@ -22,20 +22,20 @@ class OutOfMemoryException : Exception
*/
this()
{
super(s);
super(s);
}
char[] toString()
{
return s;
return s;
}
}
extern (C) void _d_OutOfMemory()
{
throw cast(OutOfMemoryException)
cast(void *)
OutOfMemoryException.classinfo.init;
cast(void *)
OutOfMemoryException.classinfo.init;
}
static this()