Fixed small formatting glitches

release/4.3a0
Frank Dellaert 2012-05-20 20:32:16 +00:00
parent 33de8d6c00
commit 00c56b0d0a
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace gtsam {
/* ************************************************************************* */
void Values::print(const string& str, const KeyFormatter& keyFormatter) const {
cout << str << "Values with " << size() << " values:\n" << endl;
cout << str << "Values with " << size() << " values:" << endl;
for(const_iterator key_value = begin(); key_value != end(); ++key_value) {
cout << " " << keyFormatter(key_value->key) << ": ";
key_value->value.print("");