Skip to content

Commit

Permalink
miniscule comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurence Lundblade committed Jan 21, 2025
1 parent 212cae4 commit 6869b00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inc/qcbor/qcbor_main_decode.h
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ typedef struct _QCBORItem {
* It wasn't explicitly described as private, but was implicitly private.
*/
QCBORMappedTagNumbers auTagNumbers;
#endif
#endif /* ! QCBOR_DISABLE_TAGS */
} QCBORItem;

/**
Expand Down
3 changes: 2 additions & 1 deletion inc/qcbor/qcbor_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ struct _QCBORDecodeContext {
uint8_t uLastError; /* QCBORError stuffed into a uint8_t */
uint8_t bAllowAllLabels; /* Used internally only, not external yet */

/* See MapTagNumber() for description of how tags are mapped. */
/* See QCBORDecode_Private_MapTagNumber() for how tags are mapped. */
// TODO: can this be removed if tags are disabled?
uint64_t auMappedTagNumbers[QCBOR_NUM_MAPPED_TAGS];

QCBORMappedTagNumbers auLastTagNumbers;
Expand Down

0 comments on commit 6869b00

Please sign in to comment.