Skip to content

Commit b953530

Browse files
lemmer-fzipmai
authored andcommitted
Changes enums to start with 0.
Signed-off-by: Markus Lemmer <lemmer@fzi.de>
1 parent 6dfc814 commit b953530

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

osi_logicallane.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ message LogicalLane
873873

874874
// Traffic rule is of type speed limit
875875
//
876-
TRAFFIC_RULE_TYPE_SPEED_LIMIT = 1;
876+
TRAFFIC_RULE_TYPE_SPEED_LIMIT = 0;
877877
}
878878

879879
//
@@ -925,19 +925,19 @@ message LogicalLane
925925
//
926926
// Unit: m/s
927927
//
928-
UNIT_METER_PER_SECOND = 1;
928+
UNIT_METER_PER_SECOND = 0;
929929

930930
// Kilometers per hour.
931931
//
932932
// Unit: km/h
933933
//
934-
UNIT_KILOMETER_PER_HOUR = 2;
934+
UNIT_KILOMETER_PER_HOUR = 1;
935935

936936
// Miles per hour.
937937
//
938938
// Unit: mph
939939
//
940-
UNIT_MILE_PER_HOUR = 3;
940+
UNIT_MILE_PER_HOUR = 2;
941941
}
942942
}
943943
}

0 commit comments

Comments
 (0)