Fix 2 waring in the OCaml AST context

llvm-svn: 280490
This commit is contained in:
Tamas Berghammer 2016-09-02 15:52:19 +00:00
parent bd51c164d9
commit 1d1613c966
2 changed files with 0 additions and 3 deletions

View File

@ -334,7 +334,6 @@ class OCamlASTContext : public TypeSystem
private:
int m_pointer_byte_size;
int m_int_byte_size;
std::unique_ptr<DWARFASTParser> m_dwarf_ast_parser_ap;
OCamlTypeMap m_base_type_map;

View File

@ -350,8 +350,6 @@ OCamlASTContext::IsIntegerType(lldb::opaque_compiler_type_t type, bool &is_signe
case OCamlPrimitiveType::eTypeInt:
is_signed = true;
return true;
default:
break;
}
}