mirror of https://github.com/odrling/Aegisub
Fix order of VariableData's initializers
This commit is contained in:
parent
a36011a9dd
commit
681de8cf37
|
@ -48,8 +48,8 @@ VariableData::VariableData() {
|
|||
}
|
||||
|
||||
VariableData::VariableData(VariableData&& o)
|
||||
: type(o.type)
|
||||
, value(o.value)
|
||||
: value(o.value)
|
||||
, type(o.type)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue