VirtualBox

Changeset 73965 in vbox


Ignore:
Timestamp:
Aug 29, 2018 5:19:20 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
124697
Message:

IPRT/rest: Doxygen fixes. bugref:9167

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/cpp/restbase.h

    r73964 r73965  
    653653     * @param   a_fThrow    Whether to throw error.
    654654     */
    655     int copyArrayWorker(RTCRestArrayBase const &a_rThat, bool fThrow);
     655    int copyArrayWorker(RTCRestArrayBase const &a_rThat, bool a_fThrow);
    656656
    657657    /**
     
    10211021     * @param   a_fThrow    Whether to throw error.
    10221022     */
    1023     int copyMapWorker(RTCRestStringMapBase const &a_rThat, bool fThrow);
     1023    int copyMapWorker(RTCRestStringMapBase const &a_rThat, bool a_fThrow);
    10241024
    10251025    /**
  • trunk/src/VBox/Runtime/common/rest/RTCRestArrayBase.cpp

    r73960 r73965  
    278278
    279279
    280 int RTCRestArrayBase::copyArrayWorker(RTCRestArrayBase const &a_rThat, bool fThrow)
     280int RTCRestArrayBase::copyArrayWorker(RTCRestArrayBase const &a_rThat, bool a_fThrow)
    281281{
    282282    int rc;
     
    294294                if (RT_SUCCESS(rc))
    295295                { /* likely */ }
    296                 else if (fThrow)
     296                else if (a_fThrow)
    297297                    throw std::bad_alloc();
    298298                else
  • trunk/src/VBox/Runtime/common/rest/RTCRestStringMapBase.cpp

    r73956 r73965  
    256256*********************************************************************************************************************************/
    257257
    258 int RTCRestStringMapBase::copyMapWorker(RTCRestStringMapBase const &a_rThat, bool fThrow)
     258int RTCRestStringMapBase::copyMapWorker(RTCRestStringMapBase const &a_rThat, bool a_fThrow)
    259259{
    260260    Assert(this != &a_rThat);
     
    267267        if (RT_SUCCESS(rc))
    268268        { /* likely */ }
    269         else if (fThrow)
     269        else if (a_fThrow)
    270270            throw std::bad_alloc();
    271271        else
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