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
No related merge requests found
......@@ -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(){
......
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