From 57ee306789ba68992d537a65b3f107eadd18db2d Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 11 Jul 2013 22:46:58 +0000 Subject: Huge change to clean up types. A long time ago we start with clang types that were created by the symbol files and there were many functions in lldb_private::ClangASTContext that helped. Later we create ClangASTType which contains a clang::ASTContext and an opauque QualType, but we didn't switch over to fully using it. There were a lot of places where we would pass around a raw clang_type_t and also pass along a clang::ASTContext separately. This left room for error. This checkin change all type code over to use ClangASTType everywhere and I cleaned up the interfaces quite a bit. Any code that was in ClangASTContext that was type related, was moved over into ClangASTType. All code that used these types was switched over to use all of the new goodness. llvm-svn: 186130 --- lldb/source/Commands/CommandObjectVersion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectVersion.h') diff --git a/lldb/source/Commands/CommandObjectVersion.h b/lldb/source/Commands/CommandObjectVersion.h index 035c65e6674..1fdbed60c65 100644 --- a/lldb/source/Commands/CommandObjectVersion.h +++ b/lldb/source/Commands/CommandObjectVersion.h @@ -34,7 +34,7 @@ public: protected: virtual bool DoExecute (Args& args, - CommandReturnObject &result); + CommandReturnObject &result); }; -- cgit v1.2.3