diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-27 15:38:50 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-27 15:38:50 +0100 |
commit | 07d326d02415467ba7f5f238a8e72a9e4b7f1549 (patch) | |
tree | 66200239fcaf5e63d82600764c041b0fe635c55c /src/core/parser/ParserContext.cpp | |
parent | 06eaf84b383affedbea5c0dffe0dc5e808d3b7b0 (diff) |
Removed no longer needed variant of the clone function
Diffstat (limited to 'src/core/parser/ParserContext.cpp')
-rw-r--r-- | src/core/parser/ParserContext.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/parser/ParserContext.cpp b/src/core/parser/ParserContext.cpp index b0d04d4..3a651f0 100644 --- a/src/core/parser/ParserContext.cpp +++ b/src/core/parser/ParserContext.cpp @@ -61,12 +61,6 @@ ParserContext ParserContext::clone(ParserScope &scope, SourceId sourceId) const project, logger, sourceId}; } -ParserContext ParserContext::clone(SourceId sourceId) const -{ - return ParserContext{registry, resourceManager, scope, - project, logger, sourceId}; -} - Manager &ParserContext::getManager() const { return project->getManager(); } } |