Skip to content
Snippets Groups Projects
Commit b41f518d authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed unused arg

parent c64d55ad
No related branches found
No related tags found
1 merge request!57Add Convert operator (a.k.a. Transmitter)
Pipeline #35654 passed
...@@ -103,13 +103,11 @@ public: ...@@ -103,13 +103,11 @@ public:
} }
return mInputs[outputIdx]; 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 // 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 // setDatatype do nothing, Identity node has no backend it just pass the same Tensor
(void) dataType;
} }
static const std::vector<std::string> getInputsName(){ static const std::vector<std::string> getInputsName(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment