Skip to content
Snippets Groups Projects
Commit 725544a5 authored by Nicolas Mansard's avatar Nicolas Mansard Committed by Valenza Florian
Browse files

IVIGIT of the forgotten (but maybe useless) assert.hpp.

parent 6839d122
No related branches found
No related tags found
No related merge requests found
#ifndef __se3_assert_hpp__
#define __se3_assert_hpp__
namespace se3
{
namespace internal
{
template<bool condition>
struct static_assertion {};
template<>
struct static_assertion<true>
{
enum
{
THE_JOINT_MAX_NV_SIZE_IS_EXCEDEED__INCREASE_MAX_JOINT_NV
};
};
} // namespace internat
} // namespace se3
#define SE3_STATIC_ASSERT(CONDITION,MSG) \
if(se3::internal::static_assertion<bool(CONDITION)>::MSG) {}
#endif // ifndef __se3_assert_hpp__
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