Revert previous commits for cleaner approach
This commit is contained in:
@@ -4,20 +4,18 @@ namespace osrm::server::service
|
||||
{
|
||||
|
||||
const constexpr char PARAMETER_SIZE_MISMATCH_MSG[] =
|
||||
"Number of elements in %1% size %2% does not match %3% size %4%";
|
||||
"Number of elements in %1% size %2% does not match coordinate size %3%";
|
||||
|
||||
template <typename ParamT>
|
||||
bool constrainParamSize(const char *msg_template,
|
||||
const char *param_name,
|
||||
const char *name,
|
||||
const ParamT ¶m,
|
||||
const char *target_name,
|
||||
const std::size_t target_size,
|
||||
std::string &help)
|
||||
{
|
||||
if (param.size() > 0 && param.size() != target_size)
|
||||
{
|
||||
help = (boost::format(msg_template) % param_name % param.size() % target_name % target_size)
|
||||
.str();
|
||||
help = (boost::format(msg_template) % name % param.size() % target_size).str();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user