Skip to content

Commit

Permalink
Apply FlagsAttribute to Characteristics (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
nxtn authored and jkotas committed Dec 27, 2019
1 parent d49b541 commit a07c771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3132,6 +3132,7 @@ public readonly partial struct VectorEncoder
}
namespace System.Reflection.PortableExecutable
{
[System.FlagsAttribute]
public enum Characteristics : ushort
{
RelocsStripped = (ushort)1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace System.Reflection.PortableExecutable
{
[Flags]
public enum Characteristics : ushort
{
RelocsStripped = 0x0001, // Relocation info stripped from file.
Expand Down

0 comments on commit a07c771

Please sign in to comment.