Skip to content

Commit

Permalink
Merge pull request #77 from ghuntley/issue76
Browse files Browse the repository at this point in the history
disable unassigned warnings for fields in the PreserveAttribute class
  • Loading branch information
anaisbetts committed Dec 3, 2014
2 parents 2410a4a + 85204cb commit 9219181
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ namespace RefitInternalGenerated
[AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Delegate)]
sealed class PreserveAttribute : Attribute
{
#pragma warning disable 0649
//
// Fields
//
public bool AllMembers;
public bool Conditional;
#pragma warning enable 0649
}
}

Expand Down

0 comments on commit 9219181

Please sign in to comment.