Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e7064e08
Commit
e7064e08
authored
Aug 06, 2011
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: void functions should not return a value.
parent
268226b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ios.c
dlls/msvcp90/ios.c
+2
-2
string.c
dlls/msvcp90/string.c
+1
-1
No files found.
dlls/msvcp90/ios.c
View file @
e7064e08
...
...
@@ -362,7 +362,7 @@ void __thiscall ios_base_clear_reraise(ios_base *this, IOSB_iostate state, MSVCP
DEFINE_THISCALL_WRAPPER
(
ios_base_clear
,
8
)
void
__thiscall
ios_base_clear
(
ios_base
*
this
,
IOSB_iostate
state
)
{
return
ios_base_clear_reraise
(
this
,
state
,
FALSE
);
ios_base_clear_reraise
(
this
,
state
,
FALSE
);
}
/* ?clear@ios_base@std@@QAEXI@Z */
...
...
@@ -370,7 +370,7 @@ void __thiscall ios_base_clear(ios_base *this, IOSB_iostate state)
DEFINE_THISCALL_WRAPPER
(
ios_base_clear_unsigned
,
8
)
void
__thiscall
ios_base_clear_unsigned
(
ios_base
*
this
,
unsigned
int
state
)
{
return
ios_base_clear_reraise
(
this
,
(
IOSB_iostate
)
state
,
FALSE
);
ios_base_clear_reraise
(
this
,
(
IOSB_iostate
)
state
,
FALSE
);
}
/* ?copyfmt@ios_base@std@@QAEAAV12@ABV12@@Z */
...
...
dlls/msvcp90/string.c
View file @
e7064e08
...
...
@@ -566,7 +566,7 @@ void __thiscall basic_string_char_tidy(basic_string_char *this,
DEFINE_THISCALL_WRAPPER
(
basic_string_char_tidy_built
,
8
)
void
__thiscall
basic_string_char_tidy_built
(
basic_string_char
*
this
,
MSVCP_bool
built
)
{
return
basic_string_char_tidy
(
this
,
built
,
0
);
basic_string_char_tidy
(
this
,
built
,
0
);
}
/* ?_Grow@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@IAE_NI_N@Z */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment