Skip to content

Commit

Permalink
Merge pull request #258 from AndrejMitrovic/Fix9394
Browse files Browse the repository at this point in the history
Issue 9394 - Fix static array ABI.
  • Loading branch information
9rnsr committed Feb 7, 2013
2 parents 7c316bb + 50381d3 commit 49e2897
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions abi.dd
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ $(SECTION3 Interfaces,
it matches the layout of a C++ class using single inheritance
on the target machine.
)

)

$(SECTION3 Arrays,
Expand Down Expand Up @@ -191,7 +191,7 @@ $(SECTION3 Associative Arrays,

$(P Associative arrays consist of a pointer to an opaque, implementation
defined type.

The current implementation is contained in and defined by
$(DRUNTIMESRC rt/aaA.d).
)
Expand All @@ -215,7 +215,6 @@ int[3] abc;
$(P Passing abc to functions results in these implicit conversions:)

---------
void func(int[3] array); // actually <reference to><array[3] of><int>
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

0 comments on commit 49e2897

Please sign in to comment.