Small indentation style fix

This commit is contained in:
Marc Garcia Puig 2019-02-23 17:12:51 +01:00
parent 43a9908b73
commit 8f9ec7fc69
1 changed files with 4 additions and 4 deletions

View File

@ -64,10 +64,10 @@ void export_map() {
;
enum_<cc::Waypoint::LaneChange>("LaneChange")
.value("None", cc::Waypoint::LaneChange::None)
.value("Right", cc::Waypoint::LaneChange::Right)
.value("Left", cc::Waypoint::LaneChange::Left)
.value("Both", cc::Waypoint::LaneChange::Both)
.value("None", cc::Waypoint::LaneChange::None)
.value("Right", cc::Waypoint::LaneChange::Right)
.value("Left", cc::Waypoint::LaneChange::Left)
.value("Both", cc::Waypoint::LaneChange::Both)
;
class_<cc::Waypoint, boost::noncopyable, boost::shared_ptr<cc::Waypoint>>("Waypoint", no_init)