rename variable name to be a little more telling

This commit is contained in:
Dennis Luxen 2015-02-19 10:11:49 +01:00
parent 3bd27ae8c5
commit b0f9a0feb4
2 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
/* /*
Copyright (c) 2013, Project OSRM contributors Copyright (c) 2015, Project OSRM contributors
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, Redistribution and use in source and binary forms, with or without modification,
@ -109,9 +109,9 @@ void RouteParameters::setGeometryFlag(const bool flag) { geometry = flag; }
void RouteParameters::setCompressionFlag(const bool flag) { compression = flag; } void RouteParameters::setCompressionFlag(const bool flag) { compression = flag; }
void RouteParameters::addCoordinate( void RouteParameters::addCoordinate(
const boost::fusion::vector<double, double> &transmitted_coordinates) const boost::fusion::vector<double, double> &received_coordinates)
{ {
coordinates.emplace_back( coordinates.emplace_back(
static_cast<int>(COORDINATE_PRECISION * boost::fusion::at_c<0>(transmitted_coordinates)), static_cast<int>(COORDINATE_PRECISION * boost::fusion::at_c<0>(received_coordinates)),
static_cast<int>(COORDINATE_PRECISION * boost::fusion::at_c<1>(transmitted_coordinates))); static_cast<int>(COORDINATE_PRECISION * boost::fusion::at_c<1>(received_coordinates)));
} }

View File

@ -1,6 +1,6 @@
/* /*
Copyright (c) 2013, Project OSRM contributors Copyright (c) 2015, Project OSRM contributors
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, Redistribution and use in source and binary forms, with or without modification,
@ -25,8 +25,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifndef ROUTE_PARAMETERS_H #ifndef ROUTE_PARAMETERS_HPP
#define ROUTE_PARAMETERS_H #define ROUTE_PARAMETERS_HPP
#include <osrm/coordinate.hpp> #include <osrm/coordinate.hpp>
@ -69,7 +69,7 @@ struct RouteParameters
void setCompressionFlag(const bool flag); void setCompressionFlag(const bool flag);
void addCoordinate(const boost::fusion::vector<double, double> &coordinates); void addCoordinate(const boost::fusion::vector<double, double> &received_coordinates);
short zoom_level; short zoom_level;
bool print_instructions; bool print_instructions;
@ -89,4 +89,4 @@ struct RouteParameters
std::vector<FixedPointCoordinate> coordinates; std::vector<FixedPointCoordinate> coordinates;
}; };
#endif // ROUTE_PARAMETERS_H #endif // ROUTE_PARAMETERS_HPP