mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
12 lines
213 B
D
12 lines
213 B
D
module std.outofmemory;
|
|
import std.compat;
|
|
|
|
public import tango.core.Exception;
|
|
|
|
extern (C) void _d_OutOfMemory()
|
|
{
|
|
throw cast(OutOfMemoryException)
|
|
cast(void *)
|
|
OutOfMemoryException.classinfo.init;
|
|
}
|