diff options
author | hjk <[email protected]> | 2023-01-09 18:08:30 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2023-01-10 10:20:03 +0000 |
commit | 0a0dd9ea31d03fcc57f51de724c32e8ca3fe3d3f (patch) | |
tree | 0638e4eac110678c2d134d4e78aef5974e4f87bc /src/plugins/cppcheck/cppchecktextmarkmanager.cpp | |
parent | 677fd6ba9a91add241447a067c65f46c61b2af94 (diff) |
CppCheck: Tr::tr and code cosmetics
Change-Id: I5e6583984f7dc94e998df3c20840f2ba2e801ab8
Reviewed-by: Alessandro Portale <[email protected]>
Diffstat (limited to 'src/plugins/cppcheck/cppchecktextmarkmanager.cpp')
-rw-r--r-- | src/plugins/cppcheck/cppchecktextmarkmanager.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/plugins/cppcheck/cppchecktextmarkmanager.cpp b/src/plugins/cppcheck/cppchecktextmarkmanager.cpp index 614b5f0fe68..04bfc82eb45 100644 --- a/src/plugins/cppcheck/cppchecktextmarkmanager.cpp +++ b/src/plugins/cppcheck/cppchecktextmarkmanager.cpp @@ -1,14 +1,14 @@ // Copyright (C) 2018 Sergey Morozov // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +#include "cppchecktextmarkmanager.h" + #include "cppcheckdiagnostic.h" #include "cppchecktextmark.h" -#include "cppchecktextmarkmanager.h" #include <utils/algorithm.h> -namespace Cppcheck { -namespace Internal { +namespace Cppcheck::Internal { CppcheckTextMarkManager::CppcheckTextMarkManager() = default; @@ -36,5 +36,4 @@ void CppcheckTextMarkManager::clearFiles(const Utils::FilePaths &files) } } -} // namespace Internal -} // namespace Cppcheck +} // Cppcheck::Internal |