From 990eed5dce9587ba2a25b793ae8dbf3ab39c07c5 Mon Sep 17 00:00:00 2001 From: Frederich Munch Date: Wed, 21 Dec 2016 14:02:53 -0500 Subject: [PATCH] Remove unused member variable in ExternalInterpreterSource. --- lib/Interpreter/ExternalInterpreterSource.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/Interpreter/ExternalInterpreterSource.h b/lib/Interpreter/ExternalInterpreterSource.h index 178186fc..259b2e8d 100644 --- a/lib/Interpreter/ExternalInterpreterSource.h +++ b/lib/Interpreter/ExternalInterpreterSource.h @@ -38,8 +38,6 @@ namespace cling { const cling::Interpreter *m_ParentInterpreter; cling::Interpreter *m_ChildInterpreter; - clang::Sema *m_Sema = nullptr; - ///\brief We keep a mapping between the imported DeclContexts /// and the original ones from of the first Interpreter. /// Key: imported DeclContext @@ -70,10 +68,6 @@ namespace cling { const clang::DeclContext *childCurrentDeclContext, clang::DeclarationName childDeclName) override; - void InitializeSema(clang::Sema &S) { m_Sema = &S; } - - void ForgetSema() { m_Sema = nullptr; } - bool Import(clang::DeclContext::lookup_result lookupResult, const clang::DeclContext *childCurrentDeclContext, clang::DeclarationName &childDeclName,