Skip to content

Commit

Permalink
Fix Issue #648
Browse files Browse the repository at this point in the history
  • Loading branch information
thelfer committed Dec 3, 2024
1 parent a08703c commit fcfbaa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/TFEL/Math/Matrix/tmatrix.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ namespace tfel::math {
tfel::math::internals::DerivativeViewFromTinyMatrixImplementation<
isScalar<FunctionType>(), isScalar<VariableType>(), FunctionType,
VariableType>;
return Implementation::template exe(m, i, j);
return Implementation::exe(m, i, j);
} // end of map_derivative

} // namespace tfel::math
Expand Down
2 changes: 1 addition & 1 deletion include/TFEL/System/ThreadedTaskResult.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace tfel::system {
if (this->eptr != nullptr) {
this->rethrow();
}
if (!this->result_has_value()) {
if (!this->result.has_value()) {
ThreadedTaskResultBase::throwBadCastException();
}
return *(this->result);
Expand Down

0 comments on commit fcfbaa1

Please sign in to comment.