Skip to content

Commit c1c6538

Browse files
committed
Fix unused variable
1 parent b574c9b commit c1c6538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ std::string template_t::render() const
1919
{
2020
try {
2121
return fmt::vformat(m_template, m_format_store);
22-
} catch (fmt::format_error const &e) {
22+
} catch (fmt::format_error const &) {
2323
log_error("Missing parameter for template: '{}'", m_template);
2424
throw;
2525
}

0 commit comments

Comments
 (0)