mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
13 lines
181 B
C++
13 lines
181 B
C++
class C {
|
|
public:
|
|
void g() {
|
|
...
|
|
//f() was previously used but is now commented, orphaning f()
|
|
//f();
|
|
...
|
|
}
|
|
private:
|
|
void f() { //is now unused, and can be removed
|
|
}
|
|
};
|