Minor clean up
diff --git a/inc/qcbor/qcbor_common.h b/inc/qcbor/qcbor_common.h
index efbedc4..031edfc 100644
--- a/inc/qcbor/qcbor_common.h
+++ b/inc/qcbor/qcbor_common.h
@@ -512,8 +512,8 @@
QCBOR_ERR_CALLBACK_FAIL = 72,
/** This error code is deprecated. Instead,
- \ref QCBOR_ERR_HALF_PRECISION_DISABLED,
- \ref QCBOR_ERR_HW_FLOAT_DISABLED or \ref QCBOR_ERR_ALL_FLOAT_DISABLED
+ @ref QCBOR_ERR_HALF_PRECISION_DISABLED,
+ @ref QCBOR_ERR_HW_FLOAT_DISABLED or @ref QCBOR_ERR_ALL_FLOAT_DISABLED
is returned depending on the specific floating-point functionality
that is disabled and the type of floating-point input. */
QCBOR_ERR_FLOAT_DATE_DISABLED = 73,
@@ -561,10 +561,9 @@
/**
- The maximum number of items in a single array or map when encoding of
- decoding.
+ * The maximum number of items in a single array or map when encoding of decoding.
*/
-// -1 is because the value UINT16_MAX is used to track indefinite-length arrays
+/* -1 because the value UINT16_MAX is used to track indefinite-length arrays */
#define QCBOR_MAX_ITEMS_IN_ARRAY (UINT16_MAX-1)
diff --git a/test/qcbor_decode_tests.c b/test/qcbor_decode_tests.c
index 4210f68..9a314c0 100644
--- a/test/qcbor_decode_tests.c
+++ b/test/qcbor_decode_tests.c
@@ -5653,14 +5653,6 @@
return 2700;
}
- /*
-
- - Make BAD_TAG_CONTENT unrecoverable.
- - Every tag decoder has to consume the bad content for the tag (if possible)
-
-
- */
-
return nReturn;
}