Skip to content
Snippets Groups Projects
Commit 8085a1fe authored by Lorenzo Moneta's avatar Lorenzo Moneta
Browse files

Remove destructor, copy ctor and assignment operator since one can use default ones

parent b55c353e
No related branches found
No related tags found
No related merge requests found
......@@ -36,15 +36,6 @@ public:
MnMachinePrecision();
~MnMachinePrecision() {}
MnMachinePrecision(const MnMachinePrecision& prec) : fEpsMac(prec.fEpsMac), fEpsMa2(prec.fEpsMa2) {}
MnMachinePrecision& operator=(const MnMachinePrecision& prec) {
fEpsMac = prec.fEpsMac;
fEpsMa2 = prec.fEpsMa2;
return *this;
}
/// eps returns the smallest possible number so that 1.+eps > 1.
double Eps() const {return fEpsMac;}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment