Skip to content

Commit

Permalink
StartModule(), makeModuleName() do not need to be public.
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel-Naumann committed Jun 28, 2017
1 parent 3d4c2a4 commit 1f22fce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions interpreter/cling/lib/Interpreter/IncrementalParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand All @@ -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

0 comments on commit 1f22fce

Please sign in to comment.