Skip to content

Commit

Permalink
typo from previous commit: operator= wasn't returning a value
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <cary@ilm.com>
  • Loading branch information
cary-ilm committed Nov 14, 2019
1 parent 03b464a commit 861aad1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions IlmBase/Iex/IexBaseExc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ BaseExc::operator = (const BaseExc& be) throw ()
_message = be._message;
_stackTrace = be._stackTrace;
}

return *this;
}

BaseExc &
Expand All @@ -127,6 +129,7 @@ BaseExc::operator = (BaseExc&& be) throw ()
_message = std::move (be._message);
_stackTrace = std::move (be._stackTrace);
}
return *this;
}

const char *
Expand Down

0 comments on commit 861aad1

Please sign in to comment.