Fix comments on empty and zero length maps and arrays, remove a TODO that was no longer relevant
diff --git a/src/qcbor_decode.c b/src/qcbor_decode.c
index fe91227..aaa4a6d 100644
--- a/src/qcbor_decode.c
+++ b/src/qcbor_decode.c
@@ -320,7 +320,7 @@
Have descended into this before this is called. The job here is
just to mark it in bounded mode.
*/
- if(uOffset >= QCBOR_NON_BOUNDED_OFFSET) { //TODO: fix this bounds check
+ if(uOffset >= QCBOR_NON_BOUNDED_OFFSET) {
return QCBOR_ERR_BUFFER_TOO_LARGE;
}