From 315b10bb960fd765b24e78f87ae09e27a1127967 Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Wed, 29 Dec 2021 16:00:09 -0500 Subject: [PATCH] minor format --- gtsam/discrete/DecisionTree-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/discrete/DecisionTree-inl.h b/gtsam/discrete/DecisionTree-inl.h index 099ccb528..51d66c860 100644 --- a/gtsam/discrete/DecisionTree-inl.h +++ b/gtsam/discrete/DecisionTree-inl.h @@ -77,7 +77,7 @@ namespace gtsam { /** equality up to tolerance */ bool equals(const Node& q, double tol) const override { - const Leaf* other = dynamic_cast (&q); + const Leaf* other = dynamic_cast(&q); if (!other) return false; return this->constant_ == other->constant_; }