Changeset 25528 in vbox for trunk/src/libs/kStuff/iprt/kHlpAssert-iprt.cpp
- Timestamp:
- Dec 20, 2009 11:24:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/kStuff/iprt/kHlpAssert-iprt.cpp
r16404 r25528 32 32 KHLP_DECL(void) kHlpAssertMsg1(const char *pszExpr, const char *pszFile, unsigned iLine, const char *pszFunction) 33 33 { 34 /*RT*/AssertMsg1(pszExpr, iLine, pszFile, pszFunction);34 RTAssertMsg1Weak(pszExpr, iLine, pszFile, pszFunction); 35 35 } 36 36 … … 40 40 va_list va; 41 41 va_start(va, pszFormat); 42 #if 0 43 RTAssertMsg2V(pszFormat, va); 44 #else 45 char szBuf[512]; 46 RTStrPrintfV(szBuf, sizeof(szBuf), pszFormat, va); 47 AssertMsg2("%s", szBuf); 48 #endif 42 RTAssertMsg2V/*Weak?*/(pszFormat, va); 49 43 va_end(va); 50 44 }
Note:
See TracChangeset
for help on using the changeset viewer.