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

Commit e50a914c authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "Always specify underlying enum type."

am: 832f1a79

Change-Id: Iaf8887dcea15c498b3fc2530d349cdff6c1d51d6
parents bc21d07f 832f1a79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
package android.hardware.tests.baz@1.0;

interface IBase {
    enum SomeBaseEnum {
    enum SomeBaseEnum : int32_t {
        grrr = 1,
    };

+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ interface IExpression {
    MAX_PLUS_2 // 1
  };

  enum Constants {
  enum Constants : int32_t {
    CONST_FOO,
    CONST_BAR = 70,
    MAX_ARRAY_SIZE = 20,
+1 −1
Original line number Diff line number Diff line
@@ -486,7 +486,7 @@ struct StaScanResult {
/**
 * Mask of flags set in the |ScanData| instance.
 */
enum StaScanDataFlagMask {
enum StaScanDataFlagMask : int32_t {
  /**
   * Indicates that a scan was interrupted/did not occur so results may be
   * incomplete.