mirror of https://github.com/BOINC/boinc.git
* lib/exception.h (class boinc_base_exception): changed order of
initialization in constructor so that initialization matches declaration. svn path=/trunk/boinc/; revision=3144
This commit is contained in:
parent
2368f5f94f
commit
3578bfe223
|
@ -47,7 +47,7 @@ public:
|
|||
: m_strErrorData(s){};
|
||||
|
||||
boinc_base_exception(const char *f, int l, const char *s=0)
|
||||
: m_strFilename(f), m_lLineNumber(l), m_strErrorData(s){};
|
||||
: m_strErrorData(s), m_strFilename(f), m_lLineNumber(l){};
|
||||
|
||||
virtual const char * ErrorType();
|
||||
virtual const char * ErrorMessage();
|
||||
|
|
Loading…
Reference in New Issue