From 638726fca5c1b7ad707970fb3795f06d5fea0d0c Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Sun, 8 Jan 2023 13:00:27 -0800 Subject: [PATCH] An attempt to fix Windows issue. --- gtsam/base/FastSet.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtsam/base/FastSet.h b/gtsam/base/FastSet.h index e93f056f6..1fceebad5 100644 --- a/gtsam/base/FastSet.h +++ b/gtsam/base/FastSet.h @@ -58,6 +58,8 @@ public: using Base::Base; // Inherit the set constructors + FastSet() = default; ///< Default constructor + /** Constructor from a iterable container, passes through to base class */ template explicit FastSet(const INPUTCONTAINER& container) :