Fix: Unused parameter in object_server.hpp

The function argument m in callback_method_instance::callFunction is
unused.

Compiler is throwing unsused parameter error when all warnings are
enabled and -Werr is set.

Tested:
Build was succesful

Signed-off-by: Nidhin MS <nidhin.ms@intel.com>
Change-Id: If8da994e90f564962a2b872bc1286bd43aa600da
diff --git a/include/sdbusplus/asio/object_server.hpp b/include/sdbusplus/asio/object_server.hpp
index dfdf1e3..5994c25 100644
--- a/include/sdbusplus/asio/object_server.hpp
+++ b/include/sdbusplus/asio/object_server.hpp
@@ -135,7 +135,7 @@
     }
     template <typename T>
     std::enable_if_t<std::is_void_v<T>, void>
-        callFunction(message::message& m, InputTupleType& inputArgs)
+        callFunction(message::message&, InputTupleType& inputArgs)
     {
         std::apply(func_, inputArgs);
     }