diff options
| author | Sergey Morozov <[email protected]> | 2018-09-22 14:36:02 +0300 |
|---|---|---|
| committer | Sergey Morozov <[email protected]> | 2018-09-28 15:44:14 +0000 |
| commit | a108a912ddaf935fe614fb6e499588a7c9e45fb8 (patch) | |
| tree | 0787b8cfe3ed30785261a236a3a3bd21afa7539a /src/plugins/cppcheck/cppchecktool.cpp | |
| parent | a5d53979641f2908a427d6acc9bcd87890b99941 (diff) | |
Cppcheck: Fix progress parsing
Change-Id: I14bc5b93b00fee25d9e307606c4fc7b30ca23fe8
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/cppcheck/cppchecktool.cpp')
| -rw-r--r-- | src/plugins/cppcheck/cppchecktool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppcheck/cppchecktool.cpp b/src/plugins/cppcheck/cppchecktool.cpp index e77001a7b36..cbf53aad796 100644 --- a/src/plugins/cppcheck/cppchecktool.cpp +++ b/src/plugins/cppcheck/cppchecktool.cpp @@ -47,7 +47,7 @@ namespace Internal { CppcheckTool::CppcheckTool(CppcheckTextMarkManager &marks) : m_marks(marks), - m_progressRegexp("^.* checked (\\d)% done$"), + m_progressRegexp("^.* checked (\\d+)% done$"), m_messageRegexp("^(.+),(\\d+),(\\w+),(\\w+),(.*)$") { m_runner = std::make_unique<CppcheckRunner>(*this); |
