-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[cleanup] Code removal of unused code #3537
Conversation
Out of curiosity, are you using some kind of a tool to detect dead code? |
I now use my own tool ccccc (based on llvm tooling) which collects generic metrics but also caller/call count. I create a github workflow https://github.com/Jarod42/codelite/blob/ccccc/.github/workflows/ccccc.yml to collect the data (not entirely automated, I do manual changes afterward to fix internal path) In my TODO list, I planned to
|
- FileUtils::GetOSXTerminalCommand - FileUtils::SplitWords - FileUtils::OpenBuiltInTerminal - FileUtils::ParseURI - FileUtils::EscapeString
- IsWordChar - TokenizeWords - class PPTable
- TemplateHelper::SetTemplateDeclaration(const wxString&) - TemplateHelper::SetTemplateInstantiation(const wxArrayString&)
- ascendingSortOp - WizardsPlugin::GizmosRemoveDuplicates - WizardsPlugin::BulkRead - WizardsPlugin::BulkWrite
- IHunSpell::IsTag - IHunSpell::GetCharacterEncoding - IHunSpell::AddWord
- clPlatform::GetOS - clPlatform::DirSeparator - clPlatform::eOS and add const for clPlatform::PathSeparator
- WebToolsConfig::GetTernProjectFile - WebToolsConfig::IsNodeInstalled - WebToolsConfig::IsNpmInstalled - WebToolsConfig::GetTernScript - WebToolsConfig::IsTernInstalled - WebToolsConfig::GetTempFolder
- WebTools::IsJavaScriptFile - WebTools::InsideJSString
- ContextCpp::GetFileImageString - ContextCpp::GetImageString - ContextCpp::RemoveDuplicates - ContextCpp::GetWordUnderCaret - ContextCpp::DisplayFilesCompletionBox - ContextCpp::ReplaceInFiles - ContextCpp::MakeCppKeywordsTags - ContextCpp::DoOpenWorkspaceFile - ContextCpp::DoGetSingatureRange
- CompilerCommandLineParser::GetCompileLine - CompilerCommandLineParser::MakeAbsolute
- clConsoleEnvironment::clConsoleEnvironment() - clConsoleEnvironment::Add
78072e5
to
d441c64
Compare
No description provided.