Skip to content

Commit

Permalink
[Parsers] Add default verbose for SRDF
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarpent committed Jun 8, 2017
1 parent d3bccac commit 08e3a70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parsers/srdf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace se3
inline void removeCollisionPairsFromSrdf(const Model& model,
GeometryModel & geomModel,
const std::string & filename,
const bool verbose) throw (std::invalid_argument)
const bool verbose = false) throw (std::invalid_argument)
{
// Check extension
const std::string extension = filename.substr(filename.find_last_of('.')+1);
Expand Down Expand Up @@ -139,7 +139,7 @@ namespace se3
/// \return The neutral configuration as an eigen vector
inline Eigen::VectorXd getNeutralConfigurationFromSrdf(Model & model,
const std::string & filename,
const bool verbose) throw (std::invalid_argument)
const bool verbose = false) throw (std::invalid_argument)
{
// Check extension
const std::string extension = filename.substr(filename.find_last_of('.')+1);
Expand Down

0 comments on commit 08e3a70

Please sign in to comment.