We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b91e6e commit b351e76Copy full SHA for b351e76
Runtime/NativeTime.cs
@@ -11,13 +11,13 @@ internal class NativeTimeInternal
11
public static extern ulong GetTimestampNs();
12
#else
13
/// <summary> Fallback for unsupported platform </summary>
14
- [BurstCompatible]
+ [GenerateTestsForBurstCompatibility]
15
public static ulong GetTimestampNs() { return 0; }
16
#endif
17
}
18
19
/// <summary>A burst compatible Stopwatch. Similar to <see cref="Stopwatch"/>.</summary>
20
21
public struct ValueStopwatch
22
{
23
public const ulong TicksToNanoseconds = 100;
0 commit comments