diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-27 16:30:49 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-28 08:33:14 +0200 |
commit | f6d97d00cd0c8d710bce614f7e557db2bc6d2f77 (patch) | |
tree | 55f96c0c1baa4dfac4e257d7481155e5b7e36bce /basic | |
parent | 1069d025869d28077e0194ab90933b180b6d3b88 (diff) |
remove unused code in basic/CodeCompleteDataCache
Specifically:
CodeCompleteDataCache::GetVars() const
CodeCompleteDataCache::SetVars(boost::unordered_map const&)
CodeCompleteDataCache::print() const
Change-Id: I59fb6f50ff47747c3cac959302bf6b7c4f4d79d3
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/classes/codecompletecache.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/basic/source/classes/codecompletecache.cxx b/basic/source/classes/codecompletecache.cxx index aad0e4fcd622..4c973107b0db 100644 --- a/basic/source/classes/codecompletecache.cxx +++ b/basic/source/classes/codecompletecache.cxx @@ -118,21 +118,6 @@ std::ostream& operator<< (std::ostream& aStream, const CodeCompleteDataCache& aC return aStream; } -const CodeCompleteVarScopes& CodeCompleteDataCache::GetVars() const -{ - return aVarScopes; -} - -void CodeCompleteDataCache::SetVars( const CodeCompleteVarScopes& aScopes ) -{ - aVarScopes = aScopes; -} - -void CodeCompleteDataCache::print() const -{ - std::cerr << *this << std::endl; -} - void CodeCompleteDataCache::Clear() { aVarScopes.clear(); |