Skip to content

Commit 5ae2a1c

Browse files
committed
Fix formatting error
1 parent a1ba232 commit 5ae2a1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/cppcheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ bool CppCheck::checkPlistOutput(const FileWithDetails& file, const std::vector<s
891891
std::string filename = slashFound ? file.spath().substr(file.spath().rfind('/') + 1) : file.spath();
892892
const std::size_t dotPosition = filename.find('.');
893893

894-
if(dotPosition == std::string::npos) {
894+
if (dotPosition == std::string::npos) {
895895
ErrorMessage::FileLocation loc(filename, 0, 0);
896896
ErrorMessage errmsg({std::move(loc)}, "", Severity::error, "filename does not contain dot", "filenameError", Certainty::normal);
897897
mErrorLogger.reportErr(errmsg);

0 commit comments

Comments
 (0)