Skip to content

[upstreaming] Revert reordering of ClangASTContext::GetLValueReferenc… #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lldb/include/lldb/Symbol/ClangASTContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -678,15 +678,15 @@ class ClangASTContext : public TypeSystem {
GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type,
size_t idx) override;

CompilerType
GetLValueReferenceType(lldb::opaque_compiler_type_t type) override;

CompilerType GetNonReferenceType(lldb::opaque_compiler_type_t type) override;

CompilerType GetPointeeType(lldb::opaque_compiler_type_t type) override;

CompilerType GetPointerType(lldb::opaque_compiler_type_t type) override;

CompilerType
GetLValueReferenceType(lldb::opaque_compiler_type_t type) override;

CompilerType
GetRValueReferenceType(lldb::opaque_compiler_type_t type) override;

Expand Down