mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-06-09 10:06:34 +02:00
Test warning fixes
This commit is contained in:
@@ -6,7 +6,7 @@ namespace Robust.Shared.IntegrationTests.GameObjects;
|
||||
[TestFixture]
|
||||
public sealed class EntitySystemManagerUninitializedTests
|
||||
{
|
||||
private class DummySystem : EntitySystem;
|
||||
private sealed class DummySystem : EntitySystem;
|
||||
|
||||
[Test]
|
||||
public void TryDoesNotThrow()
|
||||
|
||||
@@ -11,10 +11,12 @@ namespace Robust.Shared.IntegrationTests.Serialization;
|
||||
[UsedImplicitly(Reason = "Needed so RobustSerializer is guaranteed to pick up on the unsafe types.")]
|
||||
internal sealed class MakeTheseSerializable
|
||||
{
|
||||
#pragma warning disable CS0649
|
||||
public UnsafeFloat Single;
|
||||
public UnsafeDouble Double;
|
||||
public UnsafeHalf Half;
|
||||
public Half SafeHalf;
|
||||
#pragma warning restore CS0649
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user