Result destructor for _errorMessage.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
fdfd5f05c0
commit
577f105c61
|
@ -45,6 +45,12 @@ namespace ArbUt {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
~Result() {
|
||||||
|
if (_resultStatus == ResultStatus::Error) {
|
||||||
|
delete _errorMessage;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// @brief Returns whether or not the function succeeded,
|
/// @brief Returns whether or not the function succeeded,
|
||||||
/// @return Whether or not the function succeeded.
|
/// @return Whether or not the function succeeded.
|
||||||
[[nodiscard]] inline ResultStatus GetStatus() const noexcept { return _resultStatus; }
|
[[nodiscard]] inline ResultStatus GetStatus() const noexcept { return _resultStatus; }
|
||||||
|
|
Loading…
Reference in New Issue