Author: eugenezelenko Date: Thu Oct 15 19:17:35 2015 New Revision: 250476 URL: http://llvm.org/viewvc/llvm-project?rev=250476&view=rev Log: Test commit. Part of:
[LLDB] Fix Clang-tidy misc-use-override warnings in remaining files in include; other minor fixes. Differential Revision: http://reviews.llvm.org/D13681. Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ClangASTContext.h?rev=250476&r1=250475&r2=250476&view=diff ============================================================================== --- lldb/trunk/include/lldb/Symbol/ClangASTContext.h (original) +++ lldb/trunk/include/lldb/Symbol/ClangASTContext.h Thu Oct 15 19:17:35 2015 @@ -216,7 +216,6 @@ public: return ClangASTContext::GetUnknownAnyType(getASTContext()); } - static clang::DeclContext * GetDeclContextForType (clang::QualType type); @@ -400,7 +399,6 @@ public: // Returns a mask containing bits from the ClangASTContext::eTypeXXX enumerations - //------------------------------------------------------------------ // Namespace Declarations //------------------------------------------------------------------ @@ -1006,9 +1004,7 @@ public: const char *name, int64_t enum_value, uint32_t enum_value_bit_size); - - - + CompilerType GetEnumerationIntegerType (lldb::opaque_compiler_type_t type); @@ -1021,7 +1017,6 @@ public: static CompilerType CreateMemberPointerType (const CompilerType& type, const CompilerType &pointee_type); - // Converts "s" to a floating point value and place resulting floating // point bytes in the "dst" buffer. size_t @@ -1029,6 +1024,7 @@ public: const char *s, uint8_t *dst, size_t dst_size) override; + //---------------------------------------------------------------------- // Dumping types //---------------------------------------------------------------------- @@ -1066,7 +1062,7 @@ public: lldb::offset_t data_offset, size_t data_byte_size) override; - virtual void + void DumpTypeDescription (lldb::opaque_compiler_type_t type) override; // Dump to stdout void @@ -1122,6 +1118,7 @@ public: clang::VarDecl * CreateVariableDeclaration (clang::DeclContext *decl_context, const char *name, clang::QualType type); + protected: static clang::QualType GetQualType (lldb::opaque_compiler_type_t type) @@ -1178,7 +1175,7 @@ class ClangASTContextForExpressions : pu public: ClangASTContextForExpressions (Target &target); - virtual ~ClangASTContextForExpressions () {} + ~ClangASTContextForExpressions() override = default; UserExpression * GetUserExpression (const char *expr, _______________________________________________ lldb-commits mailing list [email protected] http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
