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
b6e5496d
Commit
b6e5496d
authored
Dec 20, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Avoid mismatched parentheses inside ifdefs.
parent
12f43584
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
locale.c
dlls/msvcp90/locale.c
+9
-6
No files found.
dlls/msvcp90/locale.c
View file @
b6e5496d
...
...
@@ -9536,11 +9536,12 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
ctype_char__Do_widen_s
)
VTABLE_ADD_FUNC
(
ctype_char_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_char_do_narrow_ch
)
VTABLE_ADD_FUNC
(
ctype_char__Do_narrow_s
)
);
VTABLE_ADD_FUNC
(
ctype_char__Do_narrow_s
)
#else
VTABLE_ADD_FUNC
(
ctype_char_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_char_do_narrow_ch
)
);
VTABLE_ADD_FUNC
(
ctype_char_do_narrow_ch
)
#endif
);
__ASM_VTABLE
(
ctype_wchar
,
VTABLE_ADD_FUNC
(
ctype_wchar_vector_dtor
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_is
)
...
...
@@ -9557,11 +9558,12 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
ctype_wchar__Do_widen_s
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar__Do_narrow_s
)
);
VTABLE_ADD_FUNC
(
ctype_wchar__Do_narrow_s
)
#else
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
);
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
#endif
);
__ASM_VTABLE
(
ctype_short
,
VTABLE_ADD_FUNC
(
ctype_wchar_vector_dtor
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_is
)
...
...
@@ -9578,11 +9580,12 @@ void __asm_dummy_vtables(void) {
VTABLE_ADD_FUNC
(
ctype_wchar__Do_widen_s
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
VTABLE_ADD_FUNC
(
ctype_wchar__Do_narrow_s
)
);
VTABLE_ADD_FUNC
(
ctype_wchar__Do_narrow_s
)
#else
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow
)
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
);
VTABLE_ADD_FUNC
(
ctype_wchar_do_narrow_ch
)
#endif
);
__ASM_VTABLE
(
codecvt_base
,
VTABLE_ADD_FUNC
(
codecvt_base_vector_dtor
)
VTABLE_ADD_FUNC
(
codecvt_base_do_always_noconv
)
...
...
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