Fixes for windows
Seems like a default constructor for KeyInfoEntry() is neededrelease/4.3a0
parent
3bacdbbec5
commit
f5b3c75133
|
@ -104,6 +104,7 @@ namespace gtsam {
|
||||||
class GTSAM_EXPORT KeyInfoEntry : public boost::tuple<size_t, size_t, size_t> {
|
class GTSAM_EXPORT KeyInfoEntry : public boost::tuple<size_t, size_t, size_t> {
|
||||||
public:
|
public:
|
||||||
typedef boost::tuple<Key,size_t,Key> Base;
|
typedef boost::tuple<Key,size_t,Key> Base;
|
||||||
|
KeyInfoEntry(){}
|
||||||
KeyInfoEntry(size_t idx, size_t d, Key start) : Base(idx, d, start) {}
|
KeyInfoEntry(size_t idx, size_t d, Key start) : Base(idx, d, start) {}
|
||||||
const size_t index() const { return this->get<0>(); }
|
const size_t index() const { return this->get<0>(); }
|
||||||
const size_t dim() const { return this->get<1>(); }
|
const size_t dim() const { return this->get<1>(); }
|
||||||
|
|
|
@ -158,7 +158,7 @@ namespace gtsam {
|
||||||
SubgraphBuilderParameters parameters_;
|
SubgraphBuilderParameters parameters_;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
SubgraphBuilder() {}
|
SubgraphBuilder() {};
|
||||||
};
|
};
|
||||||
|
|
||||||
/*******************************************************************************************/
|
/*******************************************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue