Skip to content

Commit 9f2e5ab

Browse files
committed
Fix tiny issues
1 parent d57e5d5 commit 9f2e5ab

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

gtsam/linear/VectorValues.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ namespace gtsam {
395395
// Print out all rows.
396396
#ifdef GTSAM_USE_TBB
397397
// TBB uses un-ordered map, so inefficiently order them:
398-
std::map<Key,Vector> ordered;
398+
std::map<Key, Vector> ordered;
399399
for (const auto& kv : *this) ordered.emplace(kv);
400400
for (const auto& kv : ordered) {
401401
#else

gtsam/linear/tests/testVectorValues.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ TEST(VectorValues, html) {
272272
"</table>\n"
273273
"</div>";
274274
string actual = vv.html();
275-
cout << actual << endl;
276275
EXPECT(actual == expected);
277276
}
278277

0 commit comments

Comments
 (0)