Fixes misplaced `*` in flag migration e.g. (#2197)

The embedded `personModelv1` in the `personModelv2` struct should not be
a pointer. The instantiation code later on already uses
`personModelv1{}` instead of `&personModelv1{}` and does not need
updating, just the initial struct definition.
This commit is contained in:
Daniel McCarney 2016-09-21 14:26:18 -04:00 committed by Jacob Hoffman-Andrews
parent 239bf9ae0a
commit da979e9c35
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ struct personModelv1 {
// Added!
struct personModelv2 {
*personModelv1
personModelv1
IsWizard bool
}