summaryrefslogtreecommitdiff
path: root/runtime/onert/core/include/util/Index.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert/core/include/util/Index.h')
-rw-r--r--runtime/onert/core/include/util/Index.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/runtime/onert/core/include/util/Index.h b/runtime/onert/core/include/util/Index.h
index e8f59282d..d3f3dcb46 100644
--- a/runtime/onert/core/include/util/Index.h
+++ b/runtime/onert/core/include/util/Index.h
@@ -138,14 +138,6 @@ public:
*/
T value() const { return _index; }
- friend std::ostream &operator<<(std::ostream &o, const Index &t)
- {
- if (t.undefined())
- return o << std::string("undefined");
- else
- return o << t.value();
- }
-
private:
T _index;
};