Changeset 62564 in vbox for trunk/src/VBox/Runtime/common/asn1/asn1-ut-integer.cpp
- Timestamp:
- Jul 26, 2016 2:43:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/asn1/asn1-ut-integer.cpp
r60030 r62564 403 403 RTDECL(int) RTAsn1Integer_Init(PRTASN1INTEGER pThis, PCRTASN1ALLOCATORVTABLE pAllocator) 404 404 { 405 RT_NOREF_PV(pAllocator); 405 406 RTAsn1Core_InitEx(&pThis->Asn1Core, 406 407 ASN1_TAG_INTEGER, … … 462 463 RTDECL(int) RTAsn1Integer_Enum(PRTASN1INTEGER pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser) 463 464 { 465 RT_NOREF_PV(pThis); RT_NOREF_PV(pfnCallback); RT_NOREF_PV(uDepth); RT_NOREF_PV(pvUser); 464 466 Assert(pThis && (!RTAsn1Integer_IsPresent(pThis) || pThis->Asn1Core.pOps == &g_RTAsn1Integer_Vtable)); 465 467 … … 477 479 RTDECL(int) RTAsn1Integer_CheckSanity(PCRTASN1INTEGER pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag) 478 480 { 481 RT_NOREF_PV(fFlags); 479 482 if (RT_UNLIKELY(!RTAsn1Integer_IsPresent(pThis))) 480 483 return RTErrInfoSetF(pErrInfo, VERR_ASN1_NOT_PRESENT, "%s: Missing (INTEGER).", pszErrorTag);
Note:
See TracChangeset
for help on using the changeset viewer.