Skip to content

Commit

Permalink
Changes enums to start with 0.
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Lemmer <lemmer@fzi.de>
  • Loading branch information
lemmer-fzi authored and pmai committed Apr 4, 2024
1 parent 6dfc814 commit b953530
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions osi_logicallane.proto
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ message LogicalLane

// Traffic rule is of type speed limit
//
TRAFFIC_RULE_TYPE_SPEED_LIMIT = 1;
TRAFFIC_RULE_TYPE_SPEED_LIMIT = 0;
}

//
Expand Down Expand Up @@ -925,19 +925,19 @@ message LogicalLane
//
// Unit: m/s
//
UNIT_METER_PER_SECOND = 1;
UNIT_METER_PER_SECOND = 0;

// Kilometers per hour.
//
// Unit: km/h
//
UNIT_KILOMETER_PER_HOUR = 2;
UNIT_KILOMETER_PER_HOUR = 1;

// Miles per hour.
//
// Unit: mph
//
UNIT_MILE_PER_HOUR = 3;
UNIT_MILE_PER_HOUR = 2;
}
}
}
Expand Down

0 comments on commit b953530

Please sign in to comment.