From 543ad1409f070c52f206f1aeceb559e557d4779d Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Tue, 20 Oct 2009 15:22:06 +0000 Subject: [PATCH] Changing from set to vector: insert -> push_back --- cpp/gtsam.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/gtsam.h b/cpp/gtsam.h index b43a0da2c..011339411 100644 --- a/cpp/gtsam.h +++ b/cpp/gtsam.h @@ -11,7 +11,7 @@ class VectorConfig { class LinearFactorSet { LinearFactorSet(); - void insert(LinearFactor* factor); + void push_back(LinearFactor* factor); }; class LinearFactor {