C++: Make implicit this receivers explicit

This commit is contained in:
Kasper Svendsen
2023-05-09 13:15:54 +02:00
parent ffa30284ea
commit c46898cb75
68 changed files with 589 additions and 560 deletions

View File

@@ -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 |