Skip to content

Commit

Permalink
Apply clang-tidy automated code changes
Browse files Browse the repository at this point in the history
Enabled checks:
    boost-use-to-string
    misc-uniqueptr-reset-release
    modernize-deprecated-headers
    modernize-make-shared
    modernize-use-bool-literals
    modernize-use-equals-delete
    modernize-use-nullptr
    modernize-use-override
    performance-unnecessary-copy-initialization
    readability-container-size-empty
    readability-redundant-string-cstr
    readability-static-definition-in-anonymous-namespace
    readability-uniqueptr-delete-release
  • Loading branch information
fwyzard committed May 18, 2020
1 parent 28de4b2 commit d98fcde
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class PixelFakeCPE final : public PixelClusterParameterEstimator {
public:
PixelFakeCPE() = default;
~PixelFakeCPE() = default;
~PixelFakeCPE() override = default;

typedef std::pair<LocalPoint, LocalError> LocalValues;
typedef std::vector<LocalValues> VLocalValues;
Expand Down

0 comments on commit d98fcde

Please sign in to comment.