Skip to content

Commit

Permalink
Address code style and quality issues (#203)
Browse files Browse the repository at this point in the history
Cleaned up by clang-tidy 7.0.0.
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

See http://releases.llvm.org/7.0.0/tools/clang/tools/extra/docs/clang-tidy/index.html for details.
  • Loading branch information
fwyzard committed Dec 29, 2020
1 parent fa83c92 commit bebc548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoLocalTracker/SiPixelRecHits/interface/PixelCPEFast.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class PixelCPEFast final : public PixelCPEBase
const SiPixelGenErrorDBObject *, const SiPixelLorentzAngle *);


~PixelCPEFast();
~PixelCPEFast() override;

// The return value can only be used safely in kernels launched on
// the same cudaStream, or after cudaStreamSynchronize.
Expand Down

0 comments on commit bebc548

Please sign in to comment.