meson: Eliminate warning messages

Eliminate `[-Werror=unused-parameter]` warning message

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: If4f8aee3ce71b5c6e6ad1d168859c03bd7bfa933
diff --git a/interface_ops.hpp b/interface_ops.hpp
index bc3e926..98b0ffb 100644
--- a/interface_ops.hpp
+++ b/interface_ops.hpp
@@ -77,8 +77,8 @@
 template <typename T, typename Enable = void>
 struct GetPropertyValue
 {
-    static InterfaceVariantType op(const std::string propertyName,
-                                   std::any& holder)
+    static InterfaceVariantType op(const std::string /* propertyName */,
+                                   std::any& /* holder */)
     {
         return InterfaceVariantType{};
     }