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

Commit 79124bd

Browse files
committed
Move public free functions below public types in object.d
1 parent 6ff706c commit 79124bd

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/object.d

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,6 @@ alias dstring = immutable(dchar)[];
3838

3939
version (D_ObjectiveC) public import core.attribute : selector;
4040

41-
/// See $(REF capacity, core,internal,array,capacity)
42-
public import core.internal.array.capacity: capacity;
43-
/// See $(REF reserve, core,internal,array,capacity)
44-
public import core.internal.array.capacity: reserve;
45-
/// See $(REF assumeSafeAppend, core,internal,array,capacity)
46-
public import core.internal.array.capacity: assumeSafeAppend;
47-
48-
/// See $(REF destroy, core,internal,destruction)
49-
public import core.internal.destruction: destroy;
50-
5141
/**
5242
* All D class objects inherit from Object.
5343
*/
@@ -2120,6 +2110,16 @@ class Error : Throwable
21202110
}
21212111
}
21222112

2113+
/// See $(REF capacity, core,internal,array,capacity)
2114+
public import core.internal.array.capacity: capacity;
2115+
/// See $(REF reserve, core,internal,array,capacity)
2116+
public import core.internal.array.capacity: reserve;
2117+
/// See $(REF assumeSafeAppend, core,internal,array,capacity)
2118+
public import core.internal.array.capacity: assumeSafeAppend;
2119+
2120+
/// See $(REF destroy, core,internal,destruction)
2121+
public import core.internal.destruction: destroy;
2122+
21232123
extern (C)
21242124
{
21252125
// from druntime/src/rt/aaA.d

0 commit comments

Comments
 (0)