StartModule(), makeModuleName() do not need to be public.

This commit is contained in:
Axel Naumann 2017-06-28 13:37:50 +02:00 committed by sftnight
parent f63f9bb61d
commit 3918184d11

View File

@ -212,14 +212,6 @@ namespace cling {
///
void SetTransformers(bool isChildInterpreter);
///\brief Create a unique name for the next llvm::Module
///
std::string makeModuleName();
///\brief Create a new llvm::Module
///
llvm::Module* StartModule();
private:
///\brief Finalizes the consumers (e.g. CodeGen) on a transaction.
///
@ -238,6 +230,14 @@ namespace cling {
///
EParseResult ParseInternal(llvm::StringRef input);
///\brief Create a unique name for the next llvm::Module
///
std::string makeModuleName();
///\brief Create a new llvm::Module
///
llvm::Module* StartModule();
};
} // end namespace cling
#endif // CLING_INCREMENTAL_PARSER_H