Skip to content

Commit

Permalink
Merge branch 'cpp_metrics' of github.com:intjftw/CodeCompass into cpp…
Browse files Browse the repository at this point in the history
…_metrics
  • Loading branch information
intjftw committed Oct 28, 2023
2 parents d81fa54 + 0afa875 commit c5e0f6c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ class CppMetricsParser : public AbstractParser
virtual bool parse() override;

private:
bool accept(const std::string& path_);

void functionParameters();

std::unordered_set<model::FileId> _fileIdCache;
Expand Down
6 changes: 0 additions & 6 deletions plugins/cpp_metrics/parser/src/cppmetricsparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ CppMetricsParser::CppMetricsParser(ParserContext& ctx_): AbstractParser(ctx_)
{
}

bool CppMetricsParser::accept(const std::string& path_)
{
std::string ext = boost::filesystem::extension(path_);
return ext == ".dummy";
}

bool CppMetricsParser::cleanupDatabase()
{
if (!_fileIdCache.empty())
Expand Down

0 comments on commit c5e0f6c

Please sign in to comment.