From b7f7e147cdb71923290d8dbe0e9fd2fe885bbfbb Mon Sep 17 00:00:00 2001 From: dellaert Date: Thu, 8 Nov 2018 13:39:03 -0500 Subject: [PATCH] Removed explicit again --- gtsam/base/FastVector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtsam/base/FastVector.h b/gtsam/base/FastVector.h index 3616704f7..307a75c87 100644 --- a/gtsam/base/FastVector.h +++ b/gtsam/base/FastVector.h @@ -64,13 +64,13 @@ class FastVector: public std::vector - explicit FastVector(const std::vector& x) { + FastVector(const std::vector& x) { // This if statement works around a bug in boost pool allocator and/or // STL vector where if the size is zero, the pool allocator will allocate // huge amounts of memory.