Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
878f2873
Commit
878f2873
authored
Dec 29, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Silence a couple of FIXMEs for C++ code.
Reported by Jacek Caban.
parent
7a685030
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
dwarf.c
dlls/dbghelp/dwarf.c
+9
-0
No files found.
dlls/dbghelp/dwarf.c
View file @
878f2873
...
...
@@ -1243,6 +1243,10 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx,
case
DW_TAG_union_type
:
case
DW_TAG_typedef
:
/* FIXME: we need to handle nested udt definitions */
case
DW_TAG_inheritance
:
case
DW_TAG_subprogram
:
case
DW_TAG_variable
:
/* FIXME: some C++ related stuff */
break
;
default:
FIXME
(
"Unhandled Tag type 0x%lx at %s, for %s
\n
"
,
...
...
@@ -1834,6 +1838,11 @@ static void dwarf2_load_one_entry(dwarf2_parse_context_t* ctx,
dwarf2_parse_variable
(
&
subpgm
,
NULL
,
di
);
}
break
;
/* silence a couple of C++ defines */
case
DW_TAG_namespace
:
case
DW_TAG_imported_module
:
case
DW_TAG_imported_declaration
:
break
;
default:
FIXME
(
"Unhandled Tag type 0x%lx at %s, for %lu
\n
"
,
di
->
abbrev
->
tag
,
dwarf2_debug_ctx
(
ctx
),
di
->
abbrev
->
entry_code
);
...
...
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