Skip to content
Snippets Groups Projects
Commit 46f68a44 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

mv default as required by Mac

parent e8622a9f
No related branches found
No related tags found
1 merge request!1970Start migration to simpler scale transform mechanism
Pipeline #112866 passed
...@@ -15,8 +15,6 @@ ...@@ -15,8 +15,6 @@
#include "Base/Axis/Bin.h" #include "Base/Axis/Bin.h"
#include "Base/Util/Assert.h" #include "Base/Util/Assert.h"
bool Bin1D::operator==(const Bin1D&) const = default;
Bin1D Bin1D::FromTo(double lower, double upper) Bin1D Bin1D::FromTo(double lower, double upper)
{ {
return {lower, upper}; return {lower, upper};
......
...@@ -24,7 +24,7 @@ public: ...@@ -24,7 +24,7 @@ public:
static Bin1D FromTo(double lower, double upper); static Bin1D FromTo(double lower, double upper);
static Bin1D At(double center); static Bin1D At(double center);
static Bin1D At(double center, double halfwidth); static Bin1D At(double center, double halfwidth);
bool operator==(const Bin1D&) const; bool operator==(const Bin1D&) const = default;
double lowerBound() const { return m_lower; } double lowerBound() const { return m_lower; }
double upperBound() const { return m_upper; } double upperBound() const { return m_upper; }
......
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