Change ulong to long in processor's transistors as database contains signed value.

This commit is contained in:
2018-04-22 03:38:15 +01:00
parent cff905283a
commit 886ec34aaf
3 changed files with 93 additions and 6 deletions

View File

@@ -91,6 +91,6 @@ namespace Cicm.Database.Schemas
/// <summary>How many simultaneos threads can run on each processor core</summary>
public int ThreadsPerCore;
/// <summary>How many transistors in package</summary>
public ulong Transistors;
public long Transistors;
}
}