fix unused parameter warning

release/4.3a0
Jose Luis Blanco-Claraco 2019-06-08 09:52:42 +02:00
parent 391d8b9e15
commit ae79c27d45
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ void FileWriter::emit(bool add_header, bool force_overwrite) const {
bool file_exists = true;
try {
existing_contents = file_contents(filename_.c_str(), add_header);
} catch (const CantOpenFile& e) {
} catch (const CantOpenFile& ) {
file_exists = false;
}