Skip to content

Commit feec02d

Browse files
committed
lint
1 parent 86cea90 commit feec02d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

+stdlib/+dotnet/ram_total.m

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
function bytes = ram_total()
44
% .NET is 2-3x faster than Java for this
55
% https://learn.microsoft.com/en-us/dotnet/api/system.gcmemoryinfo.totalavailablememorybytes
6-
try
7-
bytes = System.GC.GetGCMemoryInfo().TotalAvailableMemoryBytes;
8-
catch
9-
bytes = [];
10-
end
6+
try
7+
bytes = System.GC.GetGCMemoryInfo().TotalAvailableMemoryBytes;
8+
catch
9+
bytes = [];
10+
end
1111

12-
bytes = uint64(bytes);
12+
bytes = uint64(bytes);
1313
end

0 commit comments

Comments
 (0)