VirtualBox

Changeset 8595 in vbox for trunk


Ignore:
Timestamp:
May 5, 2008 2:11:45 PM (17 years ago)
Author:
vboxsync
Message:

AssertPtrBreakVoid -> AssertPtrBreak.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/assert.h

    r8594 r8595  
    18821882#define AssertPtrReturnVoid(pv)         AssertMsgReturnVoid(VALID_PTR(pv), ("%p\n", (pv)))
    18831883
     1884/** @def AssertPtrBreak
     1885 * Asserts that a pointer is valid.
     1886 *
     1887 * @param   pv      The pointer.
     1888 */
     1889#define AssertPtrBreak(pv)              AssertMsgBreak(VALID_PTR(pv), ("%p\n", (pv)))
     1890
    18841891/** @def AssertPtrBreakStmt
    18851892 * Asserts that a pointer is valid.
     
    18901897#define AssertPtrBreakStmt(pv, stmt)    AssertMsgBreakStmt(VALID_PTR(pv), ("%p\n", (pv)), stmt)
    18911898
    1892 /** @def AssertPtrBreak
    1893  * Asserts that a pointer is valid.
    1894  *
    1895  * @param   pv      The pointer.
    1896  */
    1897 #define AssertPtrBreak(pv)              AssertMsgBreak(VALID_PTR(pv), ("%p\n", (pv)))
    1898 
    18991899/** @def AssertPtrNull
    19001900 * Asserts that a pointer is valid or NULL.
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