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

Commit 1c065545 authored by Lev Proleev's avatar Lev Proleev Committed by android-build-merger
Browse files

Add int16_t to MixedTyped am: ed7ce7af

am: 4f936dfa

Change-Id: I5807b8680f95cb04997437030bf70d954acc451e
parents a520fc13 4f936dfa
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -62,7 +62,8 @@ void copy_back(MixedTyped* dst, const std::vector<RequestArgument>& ra, char* sr
    copy_back_<float>(dst, ra, src);
    copy_back_<int32_t>(dst, ra, src);
    copy_back_<uint8_t>(dst, ra, src);
    static_assert(3 == std::tuple_size<MixedTyped>::value,
    copy_back_<int16_t>(dst, ra, src);
    static_assert(4 == std::tuple_size<MixedTyped>::value,
                  "Number of types in MixedTyped changed, but copy_back function wasn't updated");
}