Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
1770ce1c
Verified
Commit
1770ce1c
authored
Aug 06, 2019
by
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/fcl/mesh_loader/assimp.h
View file @
1770ce1c
...
...
@@ -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)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment