Skip to content
Snippets Groups Projects
Commit 34fc6b0f authored by Dmytro Bogatov's avatar Dmytro Bogatov :two_hearts:
Browse files

Fix.

parent e50545b7
Branches
No related tags found
1 merge request!53Resolve "Grand renaming"
Pipeline #3495 canceled
......@@ -29,7 +29,8 @@ namespace Simulation.Protocol.SSE.CJJKRS
SSEServer.OperationOcurred += operation => OnOperationOccurred(operation);
// emulate database write to disk
for (int i = 0; i < database.Unpack().Size / (_elementsPerPage * 257); i++)
var pages = database.Unpack().Size / (_elementsPerPage * 257);
for (int i = 0; i < pages; i++)
{
OnNodeVisited(i);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment