Proper handling for unused parameters

Instead of ignoring the parameter warning via a compile flag we can
explicitly not give the parameter a valiable name. The compile will then
know that that the parameter is not expected to be used.

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: Idfc9c7b2ac9e2f6a3d220540a354b1b8e890bee8
diff --git a/analyzer/hei_user_interface.cpp b/analyzer/hei_user_interface.cpp
index 2422b38..277ac9f 100644
--- a/analyzer/hei_user_interface.cpp
+++ b/analyzer/hei_user_interface.cpp
@@ -65,8 +65,7 @@
 
 //------------------------------------------------------------------------------
 
-bool __readOcmb(pdbg_target* i_obmcTrgt, RegisterType_t i_regType,
-                uint64_t i_address, uint64_t& o_value)
+bool __readOcmb(pdbg_target*, RegisterType_t, uint64_t, uint64_t&)
 {
     bool accessFailure = false;