fix: remove unused include / add const for necessity portion
This commit is contained in:
parent
fd0f1b60bb
commit
ee177efe41
2
include/extractor/raster_source.hpp
Normal file → Executable file
2
include/extractor/raster_source.hpp
Normal file → Executable file
@ -15,9 +15,7 @@
|
||||
|
||||
#include <storage/io.hpp>
|
||||
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
using namespace std;
|
||||
|
@ -68,7 +68,7 @@ class FileReader
|
||||
((fingerprint == FingerprintFlag::VerifyFingerprint) ? sizeof(util::FingerPrint)
|
||||
: 0);
|
||||
}
|
||||
catch (boost::filesystem::filesystem_error &ex)
|
||||
catch (const boost::filesystem::filesystem_error &ex)
|
||||
{
|
||||
std::cout << ex.what() << std::endl;
|
||||
throw;
|
||||
|
Loading…
Reference in New Issue
Block a user