Fix tiny issues

release/4.3a0
Frank Dellaert 2022-02-12 11:37:35 -05:00
parent d57e5d5c45
commit 9f2e5ab9b6
2 changed files with 1 additions and 2 deletions

View File

@ -395,7 +395,7 @@ namespace gtsam {
// Print out all rows.
#ifdef GTSAM_USE_TBB
// TBB uses un-ordered map, so inefficiently order them:
std::map<Key,Vector> ordered;
std::map<Key, Vector> ordered;
for (const auto& kv : *this) ordered.emplace(kv);
for (const auto& kv : ordered) {
#else

View File

@ -272,7 +272,6 @@ TEST(VectorValues, html) {
"</table>\n"
"</div>";
string actual = vv.html();
cout << actual << endl;
EXPECT(actual == expected);
}