Skip to content

Commit 49cdc61

Browse files
committed
f
1 parent a776ec6 commit 49cdc61

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

glomap/io/pose_io.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ void ReadRelPose(const std::string& file_path,
4545
if (name_idx.find(file1) == name_idx.end()) {
4646
max_image_id += 1;
4747
max_camera_id += 1;
48-
images.insert(
49-
std::make_pair(max_image_id, Image(max_image_id, max_camera_id, file1)));
48+
images.insert(std::make_pair(max_image_id,
49+
Image(max_image_id, max_camera_id, file1)));
5050
name_idx[file1] = max_image_id;
5151
}
5252
if (name_idx.find(file2) == name_idx.end()) {
5353
max_image_id += 1;
5454
max_camera_id += 1;
55-
images.insert(
56-
std::make_pair(max_image_id, Image(max_image_id, max_camera_id, file2)));
55+
images.insert(std::make_pair(max_image_id,
56+
Image(max_image_id, max_camera_id, file2)));
5757
name_idx[file2] = max_image_id;
5858
}
5959

0 commit comments

Comments
 (0)