From 093ffa547e9989e0d045d81a2e88efa58d63bbcd Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Tue, 27 Aug 2013 17:22:30 +0000 Subject: [PATCH] Fixed typo --- gtsam/inference/FactorGraph.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/inference/FactorGraph.h b/gtsam/inference/FactorGraph.h index 602dd26f2..e5fceeb8d 100644 --- a/gtsam/inference/FactorGraph.h +++ b/gtsam/inference/FactorGraph.h @@ -240,7 +240,7 @@ namespace gtsam { /** Add a factor or container of factors, including STL collections, BayesTrees, etc. */ template void add(const FACTOR_OR_CONTAINER& factorOrContainer) { - push_back(Factor); + push_back(factorOrContainer); } /// @}