VirtualBox

Changeset 73968 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Aug 29, 2018 7:32:50 PM (6 years ago)
Author:
vboxsync
Message:

IPRT/rest: Bug fixes. Pet listing works. bugref:9167

File:
1 edited

Legend:

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

    r73965 r73968  
    606606     * @returns true if @a a_idx is valid, false if out of range.
    607607     * @param   a_idx       The index of the element to remove.
     608     *                      The value ~(size_t)0 is an alias for the final element.
    608609     */
    609610    bool removeAt(size_t a_idx);
     
    660661     * @returns VINF_SUCCESS or VWRN_ALREADY_EXISTS on success.
    661662     *          VERR_ALREADY_EXISTS, VERR_NO_MEMORY or VERR_NO_STR_MEMORY on failure.
    662      * @param   a_idx           Where to insert it.
     663     * @param   a_idx           Where to insert it.  The value ~(size_t)0 is an alias for m_cElements.
    663664     * @param   a_pValue        The value to insert.  Ownership is transferred to the map on success.
    664665     * @param   a_fReplace      Whether to replace existing entry rather than insert.
     
    671672     * @returns VINF_SUCCESS or VWRN_ALREADY_EXISTS on success.
    672673     *          VERR_ALREADY_EXISTS, VERR_NO_MEMORY or VERR_NO_STR_MEMORY on failure.
    673      * @param   a_idx           Where to insert it.
     674     * @param   a_idx           Where to insert it.  The value ~(size_t)0 is an alias for m_cElements.
    674675     * @param   a_rValue        The value to copy into the map.
    675676     * @param   a_fReplace      Whether to replace existing key-value pair with matching key.
     
    14031404     * Getter for m_pErrInfo.
    14041405     */
    1405     PCRTERRINFO  getErrIfno(void) const { return m_pErrInfo; }
     1406    PCRTERRINFO getErrInfo(void) const { return m_pErrInfo; }
    14061407
    14071408    /**
     
    14211422    RTCString   m_strContentType;
    14221423
    1423     PRTERRINFO  getErrInfo(void);
     1424    PRTERRINFO  getErrInfoInternal(void);
    14241425    void        deleteErrInfo(void);
    14251426    void        copyErrInfo(PCRTERRINFO pErrInfo);
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