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
2d2e7c74
Commit
2d2e7c74
authored
Jan 21, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: symbol undecoration: Handling of void in template parameters' list.
parent
2e47a3a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
undname.c
dlls/msvcrt/undname.c
+2
-6
No files found.
dlls/msvcrt/undname.c
View file @
2d2e7c74
...
...
@@ -362,12 +362,8 @@ static char* get_args(struct parsed_symbol* sym, struct array* pmt_ref, BOOL z_t
}
if
(
!
demangle_datatype
(
sym
,
&
ct
,
pmt_ref
,
TRUE
))
return
NULL
;
/* 'void' terminates an argument list */
if
(
!
strcmp
(
ct
.
left
,
"void"
))
{
if
(
!
z_term
&&
*
sym
->
current
==
'@'
)
sym
->
current
++
;
break
;
}
/* 'void' terminates an argument list in a function */
if
(
z_term
&&
!
strcmp
(
ct
.
left
,
"void"
))
break
;
str_array_push
(
sym
,
str_printf
(
sym
,
"%s%s"
,
ct
.
left
,
ct
.
right
),
-
1
,
&
arg_collect
);
if
(
!
strcmp
(
ct
.
left
,
"..."
))
break
;
...
...
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