mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-20 00:50:25 +02:00
Fixed int-lowered structs with immutable methods in LLVM
This commit is contained in:
parent
7a08e7bf11
commit
5276bd4533
4 changed files with 83 additions and 8 deletions
|
@ -461,7 +461,7 @@ namespace System {
|
|||
// not equal.
|
||||
//
|
||||
public static bool Equals(DateTimeOffset first, DateTimeOffset second) {
|
||||
return DateTime.Equals(first.UtcDateTime, second.UtcDateTime);
|
||||
return first.UtcDateTime == second.UtcDateTime;
|
||||
}
|
||||
|
||||
// Creates a DateTimeOffset from a Windows filetime. A Windows filetime is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue