Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Fix a bug in exception specification in BTagEfficiencies
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-popov committed Feb 24, 2014
1 parent d842ab1 commit dc4217d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/src/BTagEfficiencies.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ BTagEfficiencies::BTagEfficiencies(BTagEfficiencies const &src):
{}


BTagEfficiencies::BTagEfficiencies(BTagEfficiencies &&src):
BTagEfficiencies::BTagEfficiencies(BTagEfficiencies &&src) noexcept:
BTagEffInterface(move(src)),
srcFile(move(src.srcFile)),
inFileDirectory(move(src.inFileDirectory)),
Expand All @@ -70,7 +70,7 @@ BTagEfficiencies &BTagEfficiencies::operator=(BTagEfficiencies const &rhs)
}


BTagEfficiencies::~BTagEfficiencies()
BTagEfficiencies::~BTagEfficiencies() noexcept
{}


Expand Down

0 comments on commit dc4217d

Please sign in to comment.