forked from mia/Aegisub
Fix a warning on GCC about initialisation order in Aegisub::Exception class.
Originally committed to SVN as r3201.
This commit is contained in:
parent
c52d45dd95
commit
3b917f61bf
1 changed files with 1 additions and 1 deletions
|
@ -34,8 +34,8 @@ namespace Aegisub {
|
|||
// Base class for exceptions
|
||||
// No public creators, all exceptions throws must be specific
|
||||
class Exception {
|
||||
Exception *inner;
|
||||
wxString message;
|
||||
Exception *inner;
|
||||
|
||||
protected:
|
||||
Exception(const wxString &msg, Exception *inr = 0) : message(msg), inner(inr) { }
|
||||
|
|
Loading…
Reference in a new issue