Remove unneeded static member decls; mark c'tor, d'tor as deleted.

This commit is contained in:
Axel Naumann 2014-10-14 08:57:57 +02:00 committed by sftnight
parent 0764694c14
commit 3d69da22fd

View File

@ -42,11 +42,8 @@ namespace cling {
//---------------------------------------------------------------------
//! Constructor
//---------------------------------------------------------------------
CIFactory() {}
~CIFactory() {}
static void SetClingCustomLangOpts(clang::LangOptions& Opts);
static void SetClingTargetLangOpts(clang::LangOptions& Opts,
const clang::TargetInfo& Target);
CIFactory() = delete;
~CIFactory() = delete;
};
} // namespace cling
#endif // CLING_CIFACTORY_H