File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -163,12 +163,6 @@ class ClangASTContext : public TypeSystem {
163
163
164
164
CompilerType GetCStringType (bool is_const);
165
165
166
- static CompilerType GetUnknownAnyType (clang::ASTContext *ast);
167
-
168
- CompilerType GetUnknownAnyType () {
169
- return ClangASTContext::GetUnknownAnyType (getASTContext ());
170
- }
171
-
172
166
static clang::DeclContext *GetDeclContextForType (clang::QualType type);
173
167
174
168
static clang::DeclContext *GetDeclContextForType (const CompilerType &type);
Original file line number Diff line number Diff line change @@ -1236,13 +1236,6 @@ CompilerType ClangASTContext::GetBuiltinTypeForDWARFEncodingAndBitSize(
1236
1236
return CompilerType ();
1237
1237
}
1238
1238
1239
- CompilerType ClangASTContext::GetUnknownAnyType (clang::ASTContext *ast) {
1240
- if (ast)
1241
- return CompilerType (ClangASTContext::GetASTContext (ast),
1242
- ast->UnknownAnyTy .getAsOpaquePtr ());
1243
- return CompilerType ();
1244
- }
1245
-
1246
1239
CompilerType ClangASTContext::GetCStringType (bool is_const) {
1247
1240
ASTContext *ast = getASTContext ();
1248
1241
QualType char_type (ast->CharTy );
You can’t perform that action at this time.
0 commit comments