diff --git a/src/road_type.h b/src/road_type.h index 7a3a2f9ae5..1d7a810711 100644 --- a/src/road_type.h +++ b/src/road_type.h @@ -66,9 +66,11 @@ enum RoadBits { ROAD_S = ROAD_SE | ROAD_SW, ///< Road at the two southern edges ROAD_W = ROAD_NW | ROAD_SW, ///< Road at the two western edges - ROAD_ALL = ROAD_X | ROAD_Y ///< Full 4-way crossing + ROAD_ALL = ROAD_X | ROAD_Y, ///< Full 4-way crossing + + ROAD_END = ROAD_ALL + 1 ///< Out-of-range roadbits, used for iterations }; DECLARE_ENUM_AS_BIT_SET(RoadBits) -template <> struct EnumPropsT : MakeEnumPropsT {}; +template <> struct EnumPropsT : MakeEnumPropsT {}; #endif /* ROAD_TYPE_H */