diff options
| author | dam <dam@gudinoff> | 2024-05-06 12:48:36 +0100 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2024-05-06 12:48:36 +0100 |
| commit | f024b0afab602df742284b86396325ce93ce6d98 (patch) | |
| tree | f56409789db042f20021f3d4ef86d8f786dfac25 /unused.c | |
| parent | b32a697e1898a37497cfc504a2746dcf1f0710da (diff) | |
| download | task-time-tracker-f024b0afab602df742284b86396325ce93ce6d98.tar.zst task-time-tracker-f024b0afab602df742284b86396325ce93ce6d98.zip | |
Removed TODO keyword from secundary files.
Diffstat (limited to 'unused.c')
| -rw-r--r-- | unused.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -160,7 +160,6 @@ bool add_task(database_t* db, const task_t* task) { return true; } -// TODO Remove this task and move code to delete_task. // Removes task by index from database. If possible, shrinks database capacity. // Returns success. bool remove_task(database_t* db, uint32_t index) { @@ -189,7 +188,7 @@ bool remove_task(database_t* db, uint32_t index) { db->capacity = new_capacity; db->tasks = new_tasks; db->active_task = db->tasks + selected_task_offset; - // TODO Validate selected_task (may now be above count. + // Validate selected_task (may now be above count. } return true; |
