Fix compiler warning in PlatformInputManager 46/49846/2
authorJanusz Majnert <j.majnert@samsung.com>
Tue, 20 Oct 2015 13:34:45 +0000 (15:34 +0200)
committerJanusz Majnert <j.majnert@samsung.com>
Wed, 21 Oct 2015 07:28:54 +0000 (00:28 -0700)
[Issue]        N/A
[Problem]      Compilation warning about unused variable
[Solution]     Suppress the warning
[Verification] Build the project and verify that there are no warnings from
               PlatformInputManager.cpp

Change-Id: I0d8e9d669785cd220c28ea14d8e0d8d8f5c57d9f

services/PlatformInputManager/PlatformInputManager.cpp

index 3d3d85c935a834e93493a4bcb2b4dfd1954372c7..4d6cd8fad60a1550e7c632725f11d1b0d94f837c 100644 (file)
@@ -46,6 +46,8 @@ PlatformInputManager::PlatformInputManager()
 void PlatformInputManager::init(Evas_Object* mainWindow)
 {
     M_ASSERT(mainWindow);
+    //Suppress compilation warning
+    (void) mainWindow;
     ecore_event_filter_add(NULL, __filter, NULL, this);
 }