Skip to content
Snippets Groups Projects
Commit fba9b16c authored by Olivier BICHLER's avatar Olivier BICHLER Committed by Maxence Naud
Browse files

Fixed unused arguements

parent d347e784
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ public:
// }
bool computeOutputDims(bool allowDataDependency = false) override final {
bool computeOutputDims(bool /*allowDataDependency*/ = false) override final {
// check inputs have been associated
bool associated = true;
for (IOIndex_t i = 0; i < nbInputs(); ++i) {
......
......@@ -108,7 +108,7 @@ public:
// }
bool computeOutputDims(bool allowDataDependency = false) override final {
bool computeOutputDims(bool /*allowDataDependency*/ = false) override final {
// check inputs have been associated
bool associated = true;
for (IOIndex_t i = 0; i < 3; ++i) {
......
......@@ -74,7 +74,7 @@ public:
}
bool computeOutputDims(bool allowDataDependency = false) override final {
bool computeOutputDims(bool /*allowDataDependency*/ = false) override final {
bool associated = true;
for (IOIndex_t i = 0; i < nbInputs(); ++i) {
if (!getInput(i)) {
......
......@@ -71,7 +71,7 @@ class Transpose_Op : public OperatorTensor,
return std::make_shared<Transpose_Op<DIM>>(*this);
}
bool computeOutputDims(bool allowDataDependency = false) override final {
bool computeOutputDims(bool /*allowDataDependency*/ = false) override final {
if (!getInput(0)->empty()) {
auto attr = (this)->getStaticAttributes();
const std::array<DimSize_t, DIM>& outDimsOrder = static_cast<const std::array<DimSize_t, DIM>&>(std::get<0>(attr));
......
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