fixed XArchEvalUnix using wrong memeber, string_format using c++11 (which we're not ready for yet), code style (indentation and new lines)

This commit is contained in:
Nick Bolton
2014-03-20 13:34:21 +00:00
parent f9fe1130ac
commit e34e39a41c
3 changed files with 76 additions and 37 deletions

View File

@@ -25,8 +25,8 @@
//
std::string
XArchEvalUnix::eval() const throw()
XArchEvalUnix::eval() const
{
// FIXME -- not thread safe
return strerror(m_errno);
return strerror(m_error);
}