aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/render/MeasureRequirement.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/render/MeasureRequirement.h')
-rw-r--r--include/cru/ui/render/MeasureRequirement.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/cru/ui/render/MeasureRequirement.h b/include/cru/ui/render/MeasureRequirement.h
index 832b936c..ace52ef6 100644
--- a/include/cru/ui/render/MeasureRequirement.h
+++ b/include/cru/ui/render/MeasureRequirement.h
@@ -24,14 +24,11 @@ class MeasureLength final {
constexpr MeasureLength() : MeasureLength(tag_not_specify) {}
constexpr MeasureLength(tag_not_specify_t) : length_(-1) {}
- constexpr MeasureLength(float length) : length_(length) {
- Expects(length >= 0);
- }
+ constexpr MeasureLength(float length) : length_(length) {}
MeasureLength(const MeasureLength& other) = default;
constexpr MeasureLength& operator=(const MeasureLength& other) = default;
constexpr MeasureLength& operator=(float length) {
- Expects(length >= 0);
length_ = length;
return *this;
}