File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -355,19 +355,6 @@ class SwiftDispatcher {
355355 return false ;
356356 }
357357
358- static std::filesystem::path getFilePath (std::string_view path) {
359- // TODO: this needs more testing
360- // TODO: check canonicalization of names on a case insensitive filesystems
361- // TODO: make symlink resolution conditional on CODEQL_PRESERVE_SYMLINKS=true
362- std::error_code ec;
363- auto ret = std::filesystem::canonical (path, ec);
364- if (ec) {
365- std::cerr << " Cannot get real path: " << std::quoted (path) << " : " << ec.message () << " \n " ;
366- return {};
367- }
368- return ret;
369- }
370-
371358 virtual void visit (const swift::Decl* decl) = 0;
372359 virtual void visit (const swift::Stmt* stmt) = 0;
373360 virtual void visit (const swift::StmtCondition* cond) = 0;
You can’t perform that action at this time.
0 commit comments