Remove three compiler warnings.

release/4.3a0
Thomas Schneider 2014-12-02 17:03:04 +01:00
parent b318857216
commit a8064849fa
1 changed files with 3 additions and 3 deletions

View File

@ -106,9 +106,9 @@ namespace gtsam {
typedef boost::tuple<Key,size_t,Key> Base;
KeyInfoEntry(){}
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 dim() const { return this->get<1>(); }
const size_t colstart() const { return this->get<2>(); }
size_t index() const { return this->get<0>(); }
size_t dim() const { return this->get<1>(); }
size_t colstart() const { return this->get<2>(); }
};
/************************************************************************************/