diff options
Diffstat (limited to 'clang/lib/AST/ASTContext.cpp')
| -rw-r--r-- | clang/lib/AST/ASTContext.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp index 7b247701021..e5081e384f7 100644 --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -5716,4 +5716,9 @@ CallingConv ASTContext::getDefaultMethodCallConv() { return ABI->getDefaultMethodCallConv(); } +bool ASTContext::isNearlyEmpty(const CXXRecordDecl *RD) { + // Pass through to the C++ ABI object + return ABI->isNearlyEmpty(RD); +} + CXXABI::~CXXABI() {} |

