Module: wine Branch: master Commit: 1a1ffe60fdb0fa0e5e23e3c2b7247bfecbfcbae3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1a1ffe60fdb0fa0e5e23e3c2b7...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Aug 16 15:12:46 2010 +0200
dbghelp: Silence template related dwarf FIXMEs.
---
dlls/dbghelp/dwarf.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 4fec9cc..a0fcc12 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -1300,6 +1300,8 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_parse_context_t* ctx, /* FIXME: we need to handle nested udt definitions */ case DW_TAG_inheritance: case DW_TAG_subprogram: + case DW_TAG_template_type_param: + case DW_TAG_template_value_param: case DW_TAG_variable: /* FIXME: some C++ related stuff */ break; @@ -1771,6 +1773,8 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_parse_context_t* ctx, /* the type referred to will be loaded when we need it, so skip it */ break; case DW_TAG_unspecified_parameters: + case DW_TAG_template_type_param: + case DW_TAG_template_value_param: /* FIXME: no support in dbghelp's internals so far */ break; default: