From 88182029f4fd1daa98d8bdb8b31de8d44676281e Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Mon, 24 Feb 2020 20:24:41 +0100 Subject: [PATCH] core: fix assert --- include/eigenpy/eigen-allocator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/eigenpy/eigen-allocator.hpp b/include/eigenpy/eigen-allocator.hpp index 243c1d3..a186d82 100644 --- a/include/eigenpy/eigen-allocator.hpp +++ b/include/eigenpy/eigen-allocator.hpp @@ -79,7 +79,7 @@ namespace eigenpy const Eigen::MatrixBase<MatrixOut> & /*dest*/) { // do nothing - assert("Must never happened"); + assert(false && "Must never happened"); } }; -- GitLab