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 {
355
355
return false ;
356
356
}
357
357
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
-
371
358
virtual void visit (const swift::Decl* decl) = 0;
372
359
virtual void visit (const swift::Stmt* stmt) = 0;
373
360
virtual void visit (const swift::StmtCondition* cond) = 0;
You can’t perform that action at this time.
0 commit comments