Check array dimenstion order am: a3b0f1f431
am: 57aa0f1bb3
am: 96df229fec
Change-Id: I05392d5f5bfde7f16e1a7b8dc6323a8964a18163
This commit is contained in:
commit
f1a2a4d953
1 changed files with 4 additions and 0 deletions
|
@ -122,6 +122,10 @@ interface IFoo {
|
|||
bitfield<BitField> bf;
|
||||
};
|
||||
|
||||
typedef int32_t[5][6][7] multidimArrayOne;
|
||||
typedef multidimArrayOne[8][9][10] multidimArrayTwo;
|
||||
typedef multidimArrayTwo[2][3][4] multidimArrayThree;
|
||||
|
||||
doThis(float param);
|
||||
doThatAndReturnSomething(int64_t param) generates (int32_t result);
|
||||
doQuiteABit(int32_t a, int64_t b, float c, double d) generates (double something);
|
||||
|
|
Loading…
Reference in a new issue