diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-28 13:43:27 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-04-28 13:43:27 -0400 |
commit | 5ac5354dc76159d2c53dcd16b0177c5889580bd7 (patch) | |
tree | 3f8d8298a1c3ec689cd0590f8c5762ba615ec796 | |
parent | c455e68e61946394f1e4078efeffc87c65dff921 (diff) | |
download | spmc-5ac5354dc76159d2c53dcd16b0177c5889580bd7.tar.gz |
Remove TODO
-rw-r--r-- | lib/strlist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/strlist.c b/lib/strlist.c index b8d394d..3de10dd 100644 --- a/lib/strlist.c +++ b/lib/strlist.c @@ -120,7 +120,6 @@ int strlist_cmp(StrList *a, StrList *b) { * @param mode Available modes: `STRLIST_DEFAULT` (alphabetic), `STRLIST_ASC` (ascending), `STRLIST_DSC` (descending) */ void strlist_sort(StrList *pStrList, unsigned int mode) { - // TODO: use strsort_array() instead instead of duplicating effort void *fn = NULL; if (pStrList == NULL) { |