In Java, if there is a warning that should be ignored we can suppress warnings on it like this:
@SuppressWarnings("unused")
public void functionCalledExternally(){
//code
}
What I can use to suppress a specific instance of a specific warning in g++?