Skip to content
Snippets Groups Projects
Verified Commit 1770ce1c authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: remove throw from function declarations

This is for making the code compliant with new policy in C++17.
parent 4011a907
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ template<class BoundingVolume>
inline void meshFromAssimpScene(const std::string & name,
const fcl::Vec3f & scale,
const aiScene* scene,
const boost::shared_ptr < BVHModel<BoundingVolume> > & mesh) throw (std::invalid_argument)
const boost::shared_ptr < BVHModel<BoundingVolume> > & mesh)
{
TriangleAndVertices tv;
......@@ -128,7 +128,7 @@ inline void meshFromAssimpScene(const std::string & name,
template<class BoundingVolume>
inline void loadPolyhedronFromResource (const std::string & resource_path,
const fcl::Vec3f & scale,
const boost::shared_ptr < BVHModel<BoundingVolume> > & polyhedron) throw (std::invalid_argument)
const boost::shared_ptr < BVHModel<BoundingVolume> > & polyhedron)
{
Assimp::Importer importer;
// set list of ignored parameters (parameters used for rendering)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment