Finally fix that infinite const recursion.

This commit is contained in:
Vassil Vassilev 2013-08-28 09:36:06 +02:00 committed by sftnight
parent 59ced3f193
commit eaadf9d492

View File

@ -373,7 +373,9 @@ namespace cling {
clang::ASTContext& getASTContext() {
return m_ASTContext;
}
const clang::ASTContext& getASTContext() const { return getASTContext(); }
const clang::ASTContext& getASTContext() const {
return m_ASTContext;
}
///\brief Erases an element at given position.
///