aboutsummaryrefslogtreecommitdiff
path: root/src/graph/printers/DotGraphPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/printers/DotGraphPrinter.cpp')
-rw-r--r--src/graph/printers/DotGraphPrinter.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/graph/printers/DotGraphPrinter.cpp b/src/graph/printers/DotGraphPrinter.cpp
index 2e1e9d0951..08f7f25ee5 100644
--- a/src/graph/printers/DotGraphPrinter.cpp
+++ b/src/graph/printers/DotGraphPrinter.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2020 Arm Limited.
+ * Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -111,8 +111,9 @@ void DotGraphVisitor::visit(PoolingLayerNode &n)
_info = ss.str();
}
-void DotGraphVisitor::default_visit()
+void DotGraphVisitor::default_visit(INode &n)
{
+ ARM_COMPUTE_UNUSED(n);
_info.clear();
}