Changeset 25528 in vbox for trunk/src/VBox/Runtime/common/misc/RTAssertMsg2Weak.cpp
- Timestamp:
- Dec 20, 2009 11:24:59 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56201
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2Weak.cpp
r21337 r25528 5 5 6 6 /* 7 * Copyright (C) 2008 Sun Microsystems, Inc.7 * Copyright (C) 2008-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 39 39 40 40 41 RTDECL(void) AssertMsg2(const char *pszFormat, ...)41 RTDECL(void) RTAssertMsg2Weak(const char *pszFormat, ...) 42 42 { 43 43 va_list va; 44 44 va_start(va, pszFormat); 45 RTAssertMsg2 V(pszFormat, va);45 RTAssertMsg2WeakV(pszFormat, va); 46 46 va_end(va); 47 47 } 48 RT_EXPORT_SYMBOL( AssertMsg2);48 RT_EXPORT_SYMBOL(RTAssertMsg2Weak); 49 49
Note:
See TracChangeset
for help on using the changeset viewer.