]> rtime.felk.cvut.cz Git - hubacji1/bcar.git/blobdiff - src/pslot.cc
Fix compile errors
[hubacji1/bcar.git] / src / pslot.cc
index 85581fdcd923bc13abc3739dc63a6a805c2edd3c..1a0f32385f2c012076851c36a3eb35fe7c223f81 100644 (file)
 namespace bcar {
 
 ParkingSlot::ParkingSlot(Point p, double h, double W, double L) :
-               border_({p,
+               border_{p,
                        Point(p.x() + W * cos(h - M_PI / 2.0),
                                p.y() + W * sin(h - M_PI / 2.0)),
                        Point(p.x() + W * cos(h - M_PI / 2.0) + L * cos(h),
                                p.y() + W * sin(h - M_PI / 2.0) + L * sin(h)),
-                       Point(p.x() + L * cos(h), p.y() + L * sin(h))}),
+                       Point(p.x() + L * cos(h), p.y() + L * sin(h))},
                entry_(border_[0], border_[3]),
                rear_(border_[0], border_[1]),
                curb_(border_[1], border_[2]),
@@ -26,8 +26,8 @@ ParkingSlot::ParkingSlot(Point p, double h, double W, double L) :
 
 ParkingSlot::ParkingSlot(double lrx, double lry, double rrx, double rry,
                double rfx, double rfy, double lfx, double lfy) :
-                       border_({Point(lrx, lry), Point(rrx, rry),
-                               Point(rfx, rfy), Point(lfx, lfy)}),
+                       border_{Point(lrx, lry), Point(rrx, rry),
+                               Point(rfx, rfy), Point(lfx, lfy)},
                        entry_(border_[0], border_[3]),
                        rear_(border_[0], border_[1]),
                        curb_(border_[1], border_[2]),