Skip to content

Commit

Permalink
fix: Fix pragma being cutoff (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminMichaelis authored Jan 24, 2024
1 parent 4c2d796 commit 9b9fb22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ struct ColorRef
public byte Green;
public byte Blue;
// Turn off the warning about not accessing Unused
#pragma warning disable 414
#pragma warning disable 414
private byte Unused;
#pragma warning restore 414
#pragma warning restore 414

public ColorRef(byte red, byte green, byte blue)
{
Expand Down

0 comments on commit 9b9fb22

Please sign in to comment.