Updated source path in dub.json

This commit is contained in:
Tristan B. Kildaire 2020-06-23 11:52:36 +02:00
parent 1831e65193
commit 41dcefeb9f
2 changed files with 3 additions and 2 deletions

View File

@ -9,5 +9,6 @@
"description": "Tag-based asynchronous messaging framework",
"license": "LGPL-3.0",
"name": "tristanable",
"targetType": "library"
"targetType": "library",
"sourcePaths": ["source/tristanable"]
}

View File

@ -31,6 +31,7 @@ public final class GarbageCollector : Thread
requestQueueVariable = cast(Request[]*)manager.getQueueVariable();
}
/* TODO: Add timeout ability */
private void cleaner()
{
while(true)
@ -38,7 +39,6 @@ public final class GarbageCollector : Thread
/* Lock the queue */
manager.lockQueue();
/* TODO: Add clean up here */
/* Construct a new list */
Request[] newList;