Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
8e755152
Commit
8e755152
authored
13 years ago
by
Daniel Lehman
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcp90: basic_string<>::rfind(ch) should call rfind.
parent
0af4827e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/msvcp90/string.c
+2
-2
2 additions, 2 deletions
dlls/msvcp90/string.c
with
2 additions
and
2 deletions
dlls/msvcp90/string.c
+
2
−
2
View file @
8e755152
...
...
@@ -1658,7 +1658,7 @@ DEFINE_THISCALL_WRAPPER(MSVCP_basic_string_char_rfind_ch, 12)
MSVCP_size_t
__thiscall
MSVCP_basic_string_char_rfind_ch
(
const
basic_string_char
*
this
,
char
ch
,
MSVCP_size_t
pos
)
{
return
MSVCP_basic_string_char_find_cstr_substr
(
this
,
&
ch
,
pos
,
1
);
return
MSVCP_basic_string_char_
r
find_cstr_substr
(
this
,
&
ch
,
pos
,
1
);
}
/* ?find_first_of@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBEIPBDII@Z */
...
...
@@ -3652,7 +3652,7 @@ DEFINE_THISCALL_WRAPPER(MSVCP_basic_string_wchar_rfind_ch, 12)
MSVCP_size_t
__thiscall
MSVCP_basic_string_wchar_rfind_ch
(
const
basic_string_wchar
*
this
,
wchar_t
ch
,
MSVCP_size_t
pos
)
{
return
MSVCP_basic_string_wchar_find_cstr_substr
(
this
,
&
ch
,
pos
,
1
);
return
MSVCP_basic_string_wchar_
r
find_cstr_substr
(
this
,
&
ch
,
pos
,
1
);
}
/* ?find_first_of@?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@QBEIPB_WII@Z */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment