summaryrefslogtreecommitdiff
path: root/runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h
diff options
context:
space:
mode:
author이상규/On-Device Lab(SR)/Principal Engineer/삼성전자 <sg5.lee@samsung.com>2019-04-09 18:31:12 +0900
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>2019-04-09 18:31:12 +0900
commite0c502c38513ed034fcc6a8c6e3059a7669b0e67 (patch)
tree2b7d2f6cd17022e9c5f1b3a190b9082a2848c3e4 /runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h
parent5891251d5fedd9b3c8cb51c1a14b1139fc188c40 (diff)
downloadnnfw-e0c502c38513ed034fcc6a8c6e3059a7669b0e67.tar.gz
nnfw-e0c502c38513ed034fcc6a8c6e3059a7669b0e67.tar.bz2
nnfw-e0c502c38513ed034fcc6a8c6e3059a7669b0e67.zip
[neurun] Remove redundant virtual from override functions (#4956)
I removed `virtual` when I am sure it is our code. Otherwise, I did not removed `virtual`. Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>
Diffstat (limited to 'runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h')
-rw-r--r--runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h b/runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h
index 882bc4424..d451e41c3 100644
--- a/runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h
+++ b/runtimes/neurun/core/src/dumper/dot/DotOperandInfo.h
@@ -63,11 +63,11 @@ public:
const neurun::graph::operand::LowerInfo *lower_info);
public:
- virtual std::string index_str() const override;
- virtual std::string label() const override;
- virtual std::string dot_shape() const override;
- virtual std::string bg_color_scheme() const override;
- virtual std::string bg_color() const override;
+ std::string index_str() const override;
+ std::string label() const override;
+ std::string dot_shape() const override;
+ std::string bg_color_scheme() const override;
+ std::string bg_color() const override;
private:
void addBackendLabel();