Skip to content

Commit 6d85e61

Browse files
author
Daniel Marjamäki
committed
format
1 parent fb4eae9 commit 6d85e61

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/errorlogger.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ ErrorMessage::ErrorMessage(ErrorPath errorPath, const TokenList *tokenList, Seve
164164
setmsg(msg);
165165

166166
std::list<const Token*> tokens;
167-
std::transform(errorPath.cbegin(), errorPath.cend(), std::back_inserter(tokens), [](const ErrorPathItem& e) { return e.first; });
167+
std::transform(errorPath.cbegin(), errorPath.cend(), std::back_inserter(tokens),
168+
[](const ErrorPathItem& e) { return e.first; });
168169
calculateWarningHash(tokens);
169170
}
170171

0 commit comments

Comments
 (0)