Fix tiny issues
parent
d57e5d5c45
commit
9f2e5ab9b6
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -272,7 +272,6 @@ TEST(VectorValues, html) {
|
|||
"</table>\n"
|
||||
"</div>";
|
||||
string actual = vv.html();
|
||||
cout << actual << endl;
|
||||
EXPECT(actual == expected);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue