You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah, it won't work. The tag will be applied to the integer map label. So you have to do this:
QCBOREncode_AddInt64(qec, keyint);
QCBOREncode_AddTag(qec, MyTag);
QCBOREncode_OpenArray(qec);
if I do:
QCBOREncode_OpenArrayInMapN(qec, keyint);
can I then call
QCBOREncode_AddTag(qec, MyTag);
to insert a tag before the array is started?
The text was updated successfully, but these errors were encountered: