libebml: fix the constructor of CRTError (path from Graham 'gbooker' Booker)
git-svn-id: https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/libebml@746 a6f86f6d-0131-4f8e-9e7b-e335508773d5
This commit is contained in:
parent
c064df6936
commit
81b5b9ff60
@ -49,13 +49,13 @@ START_LIBEBML_NAMESPACE
|
||||
|
||||
CRTError::CRTError(int nError, const std::string & Description)
|
||||
:std::runtime_error(Description+": "+strerror(nError))
|
||||
,Error(Error)
|
||||
,Error(nError)
|
||||
{
|
||||
}
|
||||
|
||||
CRTError::CRTError(const std::string & Description,int nError)
|
||||
:std::runtime_error(Description+": "+strerror(nError))
|
||||
,Error(Error)
|
||||
,Error(nError)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user