Merge pull request #529 from borglab/feature/VectorValuesType

Minor typo fix
release/4.3a0
Varun Agrawal 2020-09-18 14:35:13 -04:00 committed by GitHub
commit d947e733d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public:
// template <typename Derived, bool InnerPanel> // template <typename Derived, bool InnerPanel>
// OptionalJacobian(Eigen::Block<Derived,Rows,Cols,InnerPanel> block) : map_(nullptr) { ?? } // OptionalJacobian(Eigen::Block<Derived,Rows,Cols,InnerPanel> block) : map_(nullptr) { ?? }
/// Return true is allocated, false if default constructor was used /// Return true if allocated, false if default constructor was used
operator bool() const { operator bool() const {
return map_.data() != nullptr; return map_.data() != nullptr;
} }
@ -197,7 +197,7 @@ public:
#endif #endif
/// Return true is allocated, false if default constructor was used /// Return true if allocated, false if default constructor was used
operator bool() const { operator bool() const {
return pointer_!=nullptr; return pointer_!=nullptr;
} }