Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a69c3034 authored by Martijn Coenen's avatar Martijn Coenen Committed by android-build-merger
Browse files

Merge "Testing struct that has vector of other struct"

am: 0bb0ba5f

Change-Id: I7c3143bd046a98c4a2e13706bd1af43a8d0ab164
parents ba6c8445 0bb0ba5f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -40,6 +40,11 @@ interface IBaz extends IBase {
        int32_t[3][5] matrix3x5;
    };

    struct NestedStruct {
        int32_t a;
        vec<T> matrices;
    };

    @Fragile @NoReally(very="yes", array={"a","b","c"})
    oneway doThis(float param);

@@ -64,4 +69,6 @@ interface IBaz extends IBase {
    returnABitField() generates (bitfield<BitField> good);

    size(uint32_t size) generates (uint32_t size);

    getNestedStructs() generates(vec<NestedStruct> data);
};