Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit ed48e1e

Browse files
committed
Move _d_delThrowable to compiler support section in object.d
1 parent 60fa829 commit ed48e1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/object.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ private
5353
extern (C) Object _d_newclass(const TypeInfo_Class ci);
5454
}
5555

56-
public @trusted @nogc nothrow pure extern (C) void _d_delThrowable(scope Throwable);
57-
5856
/**
5957
* All D class objects inherit from Object.
6058
*/
@@ -3211,6 +3209,8 @@ public import core.internal.postblit: __ArrayPostblit;
32113209
public import core.internal.switch_: __switch;
32123210
public import core.internal.switch_: __switch_error;
32133211

3212+
public @trusted @nogc nothrow pure extern (C) void _d_delThrowable(scope Throwable);
3213+
32143214
// Compare class and interface objects for ordering.
32153215
private int __cmp(Obj)(Obj lhs, Obj rhs)
32163216
if (is(Obj : Object))

0 commit comments

Comments
 (0)