mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Check array dimenstion order
Bug: 65257916 Test: mma Change-Id: I5dcd859120800909b6fc4811c5e5a0d2f8790bcd
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user