From 360598d3d596a49f0e0778d5b4c5b49e6f17340f Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Sun, 8 Dec 2024 17:03:31 -0500 Subject: [PATCH] undo uncomment --- gtsam/discrete/DiscreteDistribution.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtsam/discrete/DiscreteDistribution.h b/gtsam/discrete/DiscreteDistribution.h index 28e509f15..09ea50332 100644 --- a/gtsam/discrete/DiscreteDistribution.h +++ b/gtsam/discrete/DiscreteDistribution.h @@ -86,7 +86,8 @@ class GTSAM_EXPORT DiscreteDistribution : public DiscreteConditional { double operator()(size_t value) const; /// We also want to keep the Base version, taking DiscreteValues: - using Base::operator(); + // TODO(dellaert): does not play well with wrapper! + // using Base::operator(); /// Return entire probability mass function. std::vector pmf() const;