Finally fix that infinite const recursion.
This commit is contained in:
parent
59ced3f193
commit
eaadf9d492
@ -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.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user