oleaut32/tests: Remove unused code (Clang).

This commit is contained in:
André Hentschel 2014-12-01 22:59:22 +01:00 committed by Alexandre Julliard
parent 84a2a963dd
commit d68b81cacb
1 changed files with 0 additions and 6 deletions

View File

@ -331,12 +331,6 @@ static void setdec64(DECIMAL* dec, BYTE scl, BYTE sgn, ULONG hi32, ULONG mid32,
S1(U1(*dec)).Lo32 = lo32;
}
static inline int strcmpW( const WCHAR *str1, const WCHAR *str2 )
{
while (*str1 && (*str1 == *str2)) { str1++; str2++; }
return *str1 - *str2;
}
/* return the string text of a given variant type */
static char vtstr_buffer[16][256];
static int vtstr_current=0;