Reverted back to vector to avoid troubles w TBB

release/4.3a0
Frank Dellaert 2015-06-13 20:19:44 -07:00
parent 107ed37e0c
commit 4e1a0edb0a
1 changed files with 2 additions and 3 deletions

View File

@ -23,7 +23,6 @@
#include <gtsam/inference/MetisIndex.h>
#include <gtsam/inference/FactorGraph.h>
#include <gtsam/base/FastSet.h>
#include <gtsam/base/FastVector.h>
#include <boost/assign/list_inserter.hpp>
#include <algorithm>
@ -31,9 +30,9 @@
namespace gtsam {
class Ordering : public FastVector<Key> {
class Ordering : public std::vector<Key> {
protected:
typedef FastVector<Key> Base;
typedef std::vector<Key> Base;
public: