Kaydet (Commit) a7db3264 authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Andras Timar

WaE: loplugin:staticmethods in the non-Java case

Change-Id: Ibebe470d0d0c00bfcaf7b3cb90aa102e8101b7bc
(cherry picked from commit 00b0ce67)
üst 9a37a8aa
......@@ -655,6 +655,8 @@ void SwHTMLParser::EndObject()
delete pAppletImpl;
pAppletImpl = 0;
}
#else
(void) this; // Silence loplugin:staticmethods
#endif
}
......@@ -786,6 +788,8 @@ void SwHTMLParser::EndApplet()
delete pAppletImpl;
pAppletImpl = 0;
#else
(void) this;
#endif
}
......@@ -816,6 +820,8 @@ void SwHTMLParser::InsertParam()
return;
pAppletImpl->AppendParam( aName, aValue );
#else
(void) this;
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment