mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
C++: Make implicit this receivers explicit
This commit is contained in:
@@ -56,7 +56,7 @@ class Library extends LibraryT {
|
||||
result = "unknown"
|
||||
}
|
||||
|
||||
string toString() { result = getName() + "-" + getVersion() }
|
||||
string toString() { result = this.getName() + "-" + this.getVersion() }
|
||||
|
||||
File getAFile() {
|
||||
exists(LibraryElement lib |
|
||||
|
||||
Reference in New Issue
Block a user