Skip to content

Commit

Permalink
OrcLib: OrcException: add missing 'status' initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienfl-orc committed Nov 9, 2020
1 parent 99f1ef9 commit cd5dd14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/OrcLib/OrcException.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ class Exception : public std::exception
}
Exception(std::wstring descr);
Exception(Severity status, _In_ HRESULT hr)
: m_HRESULT(hr)
: Severity(status)
, m_HRESULT(hr)
{
}

Expand Down

0 comments on commit cd5dd14

Please sign in to comment.