mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
msvcp60: Remove unnecessary assignments (LLVM/Clang).
This commit is contained in:
parent
c6bda4dc17
commit
79dd34993a
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
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)
|
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);
|
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,
|
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)
|
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);
|
TRACE("%p %ld %ld %ld %c\n", this, off, len, count, ch);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue