fix(parser): Apply clang-tidy fixes

This commit is contained in:
Michael Carlberg 2016-12-14 05:17:18 +01:00
parent 7d07812fa6
commit c2caf4d7a6
3 changed files with 29 additions and 36 deletions
src/components

View file

@ -292,7 +292,7 @@ void bar::parse(const string& data, bool force) {
try {
if (!data.empty()) {
parser parser{m_sig, m_log, m_opts};
parser parser{m_sig, m_opts};
parser(data);
}
} catch (const parser_error& err) {