Merged in fix/rm-compiler-warnings (pull request #61)

Remove three compiler warnings.
release/4.3a0
Frank Dellaert 2014-12-02 18:03:29 +01:00
commit c8b59b2885
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>(); }
};
/************************************************************************************/