Introduce UNUSED_PARAM()
authorSoo-Hyun Choi <sh9.choi@samsung.com>
Mon, 26 Aug 2013 15:58:54 +0000 (00:58 +0900)
committerSoo-Hyun Choi <sh9.choi@samsung.com>
Mon, 26 Aug 2013 15:58:54 +0000 (00:58 +0900)
[Issue#]     N/A
[Problem]    Build warning with unused parameters.
[Cause]      Parameters are declared but not used.
[Solution]   Introduce UNUSED_PARAM().
[SCMRequest] N/A

Change-Id: I461595e95c7eab7fd13a570f4f572a98ea0cdd18

webapp-detail/util.h

index ab148b1..6e2c1fa 100755 (executable)
@@ -24,4 +24,6 @@
 #define N_(str) gettext_noop(str)
 #define U_(str) dgettext("ug-webapp-detail-efl", str)
 
+#define UNUSED_PARAM(expr) (void)(expr)
+
 #endif /* WEB_SRC_SETTING_WEBAPP_DETAIL_UTIL_H_ */