VirtualBox

Changeset 62584 in vbox for trunk/src/VBox/Runtime/common


Ignore:
Timestamp:
Jul 27, 2016 11:46:03 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
109153
Message:

IPRT: Unused parameters on windows.

Location:
trunk/src/VBox/Runtime/common
Files:
8 edited

Legend:

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

    r62477 r62584  
    7171    pPrimaryCursor->Cursor.pbCur            = (uint8_t const *)pvFirst;
    7272    pPrimaryCursor->Cursor.cbLeft           = cb;
    73     pPrimaryCursor->Cursor.fFlags           = fFlags;
     73    pPrimaryCursor->Cursor.fFlags           = (uint8_t)fFlags; Assert(fFlags <= UINT8_MAX);
    7474    pPrimaryCursor->Cursor.cDepth           = 0;
    7575    pPrimaryCursor->Cursor.abReserved[0]    = 0;
  • trunk/src/VBox/Runtime/common/dbg/dbgmoddbghelp.cpp

    r62477 r62584  
    364364{
    365365    RTDBGMODBGHELPARGS *pArgs = (RTDBGMODBGHELPARGS *)pvUser;
     366    RT_NOREF_PV(hLdrMod);
    366367
    367368    Log(("Segment %.*s: LinkAddress=%#llx RVA=%#llx cb=%#llx\n",
  • trunk/src/VBox/Runtime/common/misc/thread.cpp

    r62477 r62584  
    15661566    PRTTHREADINT pThread = (PRTTHREADINT)pNode;
    15671567    rtThreadNativeInformDebugger(pThread);
     1568    RT_NOREF_PV(pvUser);
    15681569    return 0;
    15691570}
  • trunk/src/VBox/Runtime/common/path/RTPathChangeToDosSlashes.cpp

    r62477 r62584  
    4545RTDECL(char *) RTPathChangeToDosSlashes(char *pszPath, bool fForce)
    4646{
    47 #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2)
     47#if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
     48    RT_NOREF_PV(fForce);
     49#else
    4850    if (fForce)
    4951#endif
  • trunk/src/VBox/Runtime/common/path/RTPathChangeToUnixSlashes.cpp

    r62477 r62584  
    4545RTDECL(char *) RTPathChangeToUnixSlashes(char *pszPath, bool fForce)
    4646{
    47 #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2)
     47#if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
     48    RT_NOREF_PV(fForce);
     49#else
    4850    if (fForce)
    4951#endif
  • trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp

    r62564 r62584  
    550550                                                       PRTPATHMATCHCACHE pCache)
    551551{
     552    RT_NOREF_PV(pCache);
     553
    552554    if (iItem == 0)
    553555    {
     
    602604                                                      PRTPATHMATCHCACHE pCache)
    603605{
     606    RT_NOREF_PV(pCache);
     607
    604608    if (iItem == 0)
    605609    {
  • trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp

    r62564 r62584  
    406406static int rtZipPkzipParseLocalFileHeader(PRTZIPPKZIPREADER pThis, PRTZIPPKZIPLOCALFILEHDR pLfh, size_t *pcbExtra)
    407407{
     408    RT_NOREF_PV(pThis);
     409
    408410    if (pLfh->cbFilename >= sizeof(pThis->szName))
    409411        return VERR_PKZIP_NAME_TOO_LONG;
  • trunk/src/VBox/Runtime/common/zip/tarcmd.cpp

    r62477 r62584  
    549549                }
    550550            }
     551#else
     552            RT_NOREF_PV(pOwner); RT_NOREF_PV(pGroup);
    551553#endif
    552554
Note: See TracChangeset for help on using the changeset viewer.

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