VirtualBox

Ignore:
Timestamp:
Jul 26, 2016 2:43:03 PM (8 years ago)
Author:
vboxsync
Message:

IPRT: Mark unused parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/asn1/asn1-ut-integer.cpp

    r60030 r62564  
    403403RTDECL(int) RTAsn1Integer_Init(PRTASN1INTEGER pThis, PCRTASN1ALLOCATORVTABLE pAllocator)
    404404{
     405    RT_NOREF_PV(pAllocator);
    405406    RTAsn1Core_InitEx(&pThis->Asn1Core,
    406407                      ASN1_TAG_INTEGER,
     
    462463RTDECL(int) RTAsn1Integer_Enum(PRTASN1INTEGER pThis, PFNRTASN1ENUMCALLBACK pfnCallback, uint32_t uDepth, void *pvUser)
    463464{
     465    RT_NOREF_PV(pThis); RT_NOREF_PV(pfnCallback); RT_NOREF_PV(uDepth); RT_NOREF_PV(pvUser);
    464466    Assert(pThis && (!RTAsn1Integer_IsPresent(pThis) || pThis->Asn1Core.pOps == &g_RTAsn1Integer_Vtable));
    465467
     
    477479RTDECL(int) RTAsn1Integer_CheckSanity(PCRTASN1INTEGER pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag)
    478480{
     481    RT_NOREF_PV(fFlags);
    479482    if (RT_UNLIKELY(!RTAsn1Integer_IsPresent(pThis)))
    480483        return RTErrInfoSetF(pErrInfo, VERR_ASN1_NOT_PRESENT, "%s: Missing (INTEGER).", pszErrorTag);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette