No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SkipLocalsInitAttribute.cs 259B

123456789101112
  1. using System;
  2. namespace Unity.Burst.CompilerServices
  3. {
  4. /// <summary>
  5. /// Skip zero-initialization of local variables.
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Method)]
  8. public class SkipLocalsInitAttribute : Attribute
  9. {
  10. }
  11. }