Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for a1 release of v2 #296

Merged
merged 3 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
miniscule comment fixes
  • Loading branch information
Laurence Lundblade committed Jan 21, 2025
commit 6869b003198faaaaed8ceeaa9fba382725ab1b5e
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
Loading