Commit bf68ec1f authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Silence a couple of FIXMEs in SymGetTypeInfo().

parent 177046a1
...@@ -945,7 +945,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type, ...@@ -945,7 +945,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
X(ULONG) = ((const struct symt_data*)type)->u.member.offset; X(ULONG) = ((const struct symt_data*)type)->u.member.offset;
break; break;
default: default:
FIXME("Unknown kind (%u) for get-offset\n", WARN("Unsupported kind (%u) for get-offset\n",
((const struct symt_data*)type)->kind); ((const struct symt_data*)type)->kind);
return FALSE; return FALSE;
} }
...@@ -957,6 +957,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type, ...@@ -957,6 +957,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
case SymTagExe: case SymTagExe:
case SymTagCompiland: case SymTagCompiland:
case SymTagUDT: case SymTagUDT:
case SymTagEnum:
case SymTagFunctionType: case SymTagFunctionType:
case SymTagFunctionArgType: case SymTagFunctionArgType:
case SymTagPointerType: case SymTagPointerType:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment