diff --git a/include/aidge/operator/Identity.hpp b/include/aidge/operator/Identity.hpp
index 5f13e1d3a0a75e449b8daa8d1ea1c72ac0fe3e51..50c5ef941ac07ea79c7d74aead642b0790907d96 100644
--- a/include/aidge/operator/Identity.hpp
+++ b/include/aidge/operator/Identity.hpp
@@ -103,13 +103,11 @@ public:
         }
         return mInputs[outputIdx];
     }
-    void setBackend(const std::string& name, int device = 0) override final {
+    void setBackend(const std::string& /*name*/, int /*device*/ = 0) override final {
         // setBackend do nothing, Identity node has no backend it just pass the same Tensor
-        (void) name;
     }
-    void setDataType(const DataType& dataType) const override final {
+    void setDataType(const DataType& /*dataType*/) const override final {
         // setDatatype do nothing, Identity node has no backend it just pass the same Tensor
-        (void) dataType;
     }
 
     static const std::vector<std::string> getInputsName(){