Skip to content

Commit bb197b2

Browse files
Merge pull request #141 from objectcomputing/clang-19-fix
clang-19 fix
2 parents 1fecca6 + b1e00ba commit bb197b2

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)