Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Farmlanders/Library/PackageCache/com.unity.burst@1.6.6/Runtime/CompilerServices/IgnoreWarningAttribute.cs
2023-07-31 21:20:56 +02:00

19 lines
557 B
C#

using System;
namespace Unity.Burst.CompilerServices
{
/// <summary>
/// Can be used to specify that a warning produced by Burst for a given
/// method should be ignored.
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class IgnoreWarningAttribute : Attribute
{
/// <summary>
/// Ignore a single warning produced by Burst.
/// </summary>
/// <param name="warning">The warning to ignore.</param>
public IgnoreWarningAttribute(int warning) { }
}
}