Skip to content

Commit ee177ef

Browse files
Tomonobu SaitoTomonobu Saito
authored andcommitted
fix: remove unused include / add const for necessity portion
1 parent fd0f1b6 commit ee177ef

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

include/extractor/raster_source.hpp

100644100755
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515

1616
#include <storage/io.hpp>
1717

18-
#include <iostream>
1918
#include <iterator>
20-
#include <list>
2119
#include <string>
2220
#include <unordered_map>
2321
using namespace std;

include/storage/io.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class FileReader
6868
((fingerprint == FingerprintFlag::VerifyFingerprint) ? sizeof(util::FingerPrint)
6969
: 0);
7070
}
71-
catch (boost::filesystem::filesystem_error &ex)
71+
catch (const boost::filesystem::filesystem_error &ex)
7272
{
7373
std::cout << ex.what() << std::endl;
7474
throw;

0 commit comments

Comments
 (0)