VirtualBox

Changeset 8595

Show
Ignore:
Timestamp:
05/05/08 16:11:45 (8 months ago)
Author:
vboxsync
Message:

AssertPtrBreakVoid? -> AssertPtrBreak?.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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. 

© 2008 Sun Microsystems, Inc.
ContactPrivacy policy