Kaydet (Commit) 97df2dee authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid loplugin:staticmethods in non-debug build

Change-Id: Ieb3f5a50ed0ddc9109dc0ad16caa8a8ac5b16362
üst d0ba487b
...@@ -108,6 +108,7 @@ bool TextUndoManager::Redo() ...@@ -108,6 +108,7 @@ bool TextUndoManager::Redo()
void TextUndoManager::UndoRedoStart() void TextUndoManager::UndoRedoStart()
{ {
DBG_ASSERT( GetView(), "Undo/Redo: Active View?" ); DBG_ASSERT( GetView(), "Undo/Redo: Active View?" );
(void) this; // avoid loplugin:staticmethods
} }
void TextUndoManager::UndoRedoEnd() void TextUndoManager::UndoRedoEnd()
......
...@@ -295,6 +295,7 @@ void Window::RemoveUserEvent( ImplSVEvent * nUserEvent ) ...@@ -295,6 +295,7 @@ void Window::RemoveUserEvent( ImplSVEvent * nUserEvent )
"Window::RemoveUserEvent(): Event doesn't send to this window or is already removed" ); "Window::RemoveUserEvent(): Event doesn't send to this window or is already removed" );
DBG_ASSERT( nUserEvent->mbCall, DBG_ASSERT( nUserEvent->mbCall,
"Window::RemoveUserEvent(): Event is already removed" ); "Window::RemoveUserEvent(): Event is already removed" );
(void) this; // avoid loplugin:staticmethods
if ( nUserEvent->mpWindow ) if ( nUserEvent->mpWindow )
{ {
......
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