Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions abi.dd
Original file line number Diff line number Diff line change
Expand Up @@ -203,22 +203,6 @@ $(SECTION3 Reference Types,
referred to by reference; this means that class instances can never reside on the stack
or be passed as function parameters.
)

$(P When passing a static array to a function, the result, although declared as a static array, will
actually be a reference to a static array. For example:
)

---------
int[3] abc;
---------

$(P Passing abc to functions results in these implicit conversions:)

---------
void func(int* p); // abc is converted to a pointer
// to the first element
void func(int[] array); // abc is converted to a dynamic array
---------
)


Expand Down