Skip to content

Commit

Permalink
Merge pull request #18319 from Dr15Jones/fixFWCoregcc700Warnings
Browse files Browse the repository at this point in the history
Fixed gcc 7 warnings in FWCore
  • Loading branch information
cmsbuild committed Apr 12, 2017
2 parents 8c4e21e + c9d2b39 commit ce616fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions FWCore/Framework/interface/stream/implementors.h
Expand Up @@ -83,6 +83,7 @@ namespace edm {
RunSummaryCacheHolder() = default;
RunSummaryCacheHolder( RunSummaryCacheHolder<C> const&) = delete;
RunSummaryCacheHolder<C>& operator=(RunSummaryCacheHolder<C> const&) = delete;
virtual ~RunSummaryCacheHolder() noexcept(false) {}
private:
virtual void endRunSummary(edm::Run const&, edm::EventSetup const&, C*) const = 0;
};
Expand All @@ -93,6 +94,7 @@ namespace edm {
LuminosityBlockSummaryCacheHolder() = default;
LuminosityBlockSummaryCacheHolder( LuminosityBlockSummaryCacheHolder<C> const&) = delete;
LuminosityBlockSummaryCacheHolder<C>& operator=(LuminosityBlockSummaryCacheHolder<C> const&) = delete;
virtual ~LuminosityBlockSummaryCacheHolder() noexcept(false) {}
private:

virtual void endLuminosityBlockSummary(edm::LuminosityBlock const&, edm::EventSetup const&, C*) const = 0;
Expand Down
1 change: 1 addition & 0 deletions FWCore/Framework/src/Worker.h
Expand Up @@ -243,6 +243,7 @@ namespace edm {
class TransitionIDValueBase {
public:
virtual std::string value() const = 0;
virtual ~TransitionIDValueBase() {}
};

template< typename T>
Expand Down

0 comments on commit ce616fe

Please sign in to comment.