diff --git a/OpenRoadEd/OpenDrive/Lane.cpp b/OpenRoadEd/OpenDrive/Lane.cpp index 4e40fbb4b6077ffb365612b2002e3e531b9a05c1..3549fa40aada95a88cd6df8235998bdad617922e 100644 --- a/OpenRoadEd/OpenDrive/Lane.cpp +++ b/OpenRoadEd/OpenDrive/Lane.cpp @@ -1506,4 +1506,4 @@ void LaneHeight::SetS(double value) void LaneHeight::SetInner(double value) { mInner=value; } void LaneHeight::SetOuter(double value) -{ mOuter=value; } \ No newline at end of file +{ mOuter=value; } diff --git a/OpenRoadEd/OpenDrive/OpenDriveXmlParser.cpp b/OpenRoadEd/OpenDrive/OpenDriveXmlParser.cpp index cf93e24ff6def359c0a73dd85102a8e1c8dc7b7e..ab2b3ebcaef959b0cf643c494df5202bbc5b2c82 100644 --- a/OpenRoadEd/OpenDrive/OpenDriveXmlParser.cpp +++ b/OpenRoadEd/OpenDrive/OpenDriveXmlParser.cpp @@ -783,7 +783,7 @@ bool OpenDriveXmlParser::ReadLaneWidth(Lane* lane, TiXmlElement *node) if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane Width attributes"<<endl; return false; } @@ -811,7 +811,7 @@ bool OpenDriveXmlParser::ReadLaneRoadMark(Lane* lane, TiXmlElement *node) if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane road mark attributes"<<endl; return false; } else @@ -852,7 +852,7 @@ bool OpenDriveXmlParser::ReadLaneMaterial(Lane* lane, TiXmlElement *node) checker+=node->QueryDoubleAttribute("roughness",&roughness); if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane material attributes"<<endl; return false; } @@ -879,7 +879,7 @@ bool OpenDriveXmlParser::ReadLaneVisibility(Lane* lane, TiXmlElement *node) checker+=node->QueryDoubleAttribute("right",&right); if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane visibility attributes"<<endl; return false; } @@ -899,7 +899,7 @@ bool OpenDriveXmlParser::ReadLaneSpeed(Lane* lane, TiXmlElement *node) checker+=node->QueryDoubleAttribute("max",&max); if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane speed attributes"<<endl; return false; } @@ -919,7 +919,7 @@ bool OpenDriveXmlParser::ReadLaneAccess(Lane* lane, TiXmlElement *node) checker+=node->QueryStringAttribute("restriction",&restriction); if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane access attributes"<<endl; return false; } @@ -941,7 +941,7 @@ bool OpenDriveXmlParser::ReadLaneHeight(Lane* lane, TiXmlElement *node) checker+=node->QueryDoubleAttribute("outer",&outer); if (checker!=TIXML_SUCCESS) { - cout<<"Error parsing Lane Weight attributes"<<endl; + cout<<"Error parsing Lane height attributes"<<endl; return false; }