Skip to content

Commit 340fc2c

Browse files
fix ext_ref
1 parent 8dc155b commit 340fc2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mfast/ext_ref.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class ext_cref<decimal_cref, std::tuple<ExponentOp, MantissaOp>, Properties> {
128128
exponent_type get_exponent() const {
129129
return exponent_type(base_.get_exponent());
130130
}
131-
bool present() const { return !this->optional() || base_.present(); }
131+
bool present() const { return !base_.optional() || base_.present(); }
132132

133133
private:
134134
decimal_cref base_;

0 commit comments

Comments
 (0)