diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-10 07:40:38 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-10 07:45:47 -0700 |
| commit | eecd0353a70e74f2776c25f8b89e86f08c013168 (patch) | |
| tree | 6129187b7c301e1d0ba2aa000568782b1c3e72b9 /src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs | |
| parent | 47a086901d4227ad8d63b82602e4e0132a295741 (diff) | |
| download | wix-eecd0353a70e74f2776c25f8b89e86f08c013168.tar.gz wix-eecd0353a70e74f2776c25f8b89e86f08c013168.tar.bz2 wix-eecd0353a70e74f2776c25f8b89e86f08c013168.zip | |
Fix flag enums to actually be flags
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs b/src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs index 66d3e48f..17cf7f28 100644 --- a/src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs +++ b/src/WixToolset.Data/Tuples/WixCustomTableColumnTuple.cs | |||
| @@ -52,11 +52,11 @@ namespace WixToolset.Data.Tuples | |||
| 52 | [Flags] | 52 | [Flags] |
| 53 | public enum WixCustomTableColumnTupleAttributes | 53 | public enum WixCustomTableColumnTupleAttributes |
| 54 | { | 54 | { |
| 55 | None, | 55 | None = 0x0, |
| 56 | PrimaryKey, | 56 | PrimaryKey = 0x1, |
| 57 | Localizable, | 57 | Localizable = 0x2, |
| 58 | Nullable, | 58 | Nullable = 0x4, |
| 59 | Unreal, | 59 | Unreal = 0x8, |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | public enum WixCustomTableColumnModularizeType | 62 | public enum WixCustomTableColumnModularizeType |
