msvcp60: Remove unnecessary assignments (LLVM/Clang).

This commit is contained in:
Austin English 2012-01-30 22:50:53 -06:00 committed by Alexandre Julliard
parent c6bda4dc17
commit 79dd34993a
1 changed files with 2 additions and 2 deletions

View File

@ -1411,7 +1411,7 @@ DEFINE_THISCALL_WRAPPER(basic_string_char_replace_ch, 20)
basic_string_char* __thiscall basic_string_char_replace_ch(basic_string_char *this,
MSVCP_size_t off, MSVCP_size_t len, MSVCP_size_t count, char ch)
{
char *ptr = this->ptr;
char *ptr;
TRACE("%p %ld %ld %ld %c\n", this, off, len, count, ch);
@ -3107,7 +3107,7 @@ DEFINE_THISCALL_WRAPPER(basic_string_wchar_replace_ch, 20)
basic_string_wchar* __thiscall basic_string_wchar_replace_ch(basic_string_wchar *this,
MSVCP_size_t off, MSVCP_size_t len, MSVCP_size_t count, wchar_t ch)
{
wchar_t *ptr = this->ptr;
wchar_t *ptr;
TRACE("%p %ld %ld %ld %c\n", this, off, len, count, ch);