aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2022-08-07 11:22:15 -0700
committerLang Hames <lhames@gmail.com>2022-08-07 11:23:09 -0700
commitaa2a3196e28425c6bcf74bbf913efeda1f7fa1c7 (patch)
tree416c0227ab9fc05989fa19ffc6ab79c257079960
parentc615e467dbaf5240e4f48f3536d4857ff58c7531 (diff)
[ORC-RT] Remove a stray __orc_rt::string_view helper.
This function was accidentally left in after 1dcff823db9.
-rw-r--r--compiler-rt/lib/orc/adt.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler-rt/lib/orc/adt.h b/compiler-rt/lib/orc/adt.h
index a76aa5ad9777..8884cc8812be 100644
--- a/compiler-rt/lib/orc/adt.h
+++ b/compiler-rt/lib/orc/adt.h
@@ -58,10 +58,6 @@ private:
size_type Size = 0;
};
-inline std::ostream &operator<<(std::ostream &OS, std::string_view S) {
- return OS.write(S.data(), S.size());
-}
-
} // end namespace __orc_rt
#endif // ORC_RT_ADT_H