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/FileTuple.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/FileTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/FileTuple.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/FileTuple.cs b/src/WixToolset.Data/Tuples/FileTuple.cs index caae7b34..95776257 100644 --- a/src/WixToolset.Data/Tuples/FileTuple.cs +++ b/src/WixToolset.Data/Tuples/FileTuple.cs | |||
| @@ -78,7 +78,7 @@ namespace WixToolset.Data.Tuples | |||
| 78 | [Flags] | 78 | [Flags] |
| 79 | public enum FileTupleAttributes : int | 79 | public enum FileTupleAttributes : int |
| 80 | { | 80 | { |
| 81 | None, | 81 | None = 0x0, |
| 82 | ReadOnly = 0x1, | 82 | ReadOnly = 0x1, |
| 83 | Hidden = 0x2, | 83 | Hidden = 0x2, |
| 84 | System = 0x4, | 84 | System = 0x4, |
