Fix order of VariableData's initializers

This commit is contained in:
Thomas Goyne 2012-12-09 17:19:01 -08:00
parent a36011a9dd
commit 681de8cf37
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@ VariableData::VariableData() {
}
VariableData::VariableData(VariableData&& o)
: type(o.type)
, value(o.value)
: value(o.value)
, type(o.type)
{
}