aboutsummaryrefslogtreecommitdiff
path: root/sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch
diff options
context:
space:
mode:
authorJulien Roy <julien@jroy.ca>2022-03-07 22:20:21 -0500
committerJulien Roy <julien@jroy.ca>2022-03-07 22:20:21 -0500
commit4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc (patch)
tree8c33748225589dbe02819a5081f01271412b9b3e /sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch
parent86527ffe988b2e4e0d3697d609a94336a88e3105 (diff)
downloadMrRoy-Overlay-4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc.tar.gz
MrRoy-Overlay-4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc.tar.bz2
MrRoy-Overlay-4865f2f08d67cdb76bf12dd39b2c8f0581b68ddc.zip
Removed abandoned ebuilds
Diffstat (limited to 'sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch')
-rw-r--r--sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch b/sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch
deleted file mode 100644
index 0f33989..0000000
--- a/sys-devel/llvm-roc/files/llvm-roc-4.2.0-current_pos.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -Naur a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h
---- a/include/llvm/Support/raw_ostream.h 2021-05-22 19:56:44.779955686 +0200
-+++ b/include/llvm/Support/raw_ostream.h 2021-05-22 20:00:49.449954752 +0200
-@@ -610,9 +610,7 @@
- /// See raw_ostream::write_impl.
- void write_impl(const char *Ptr, size_t Size) override;
-
-- /// Return the current position within the stream, not counting the bytes
-- /// currently in the buffer.
-- uint64_t current_pos() const override { return OS.size(); }
-+ uint64_t current_pos() const override;
-
- public:
- explicit raw_string_ostream(std::string &O) : OS(O) {
-diff -Naur a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp
---- a/lib/Support/raw_ostream.cpp 2021-05-22 19:59:05.651955148 +0200
-+++ b/lib/Support/raw_ostream.cpp 2021-05-22 20:01:22.929954625 +0200
-@@ -938,6 +938,10 @@
- // raw_string_ostream
- //===----------------------------------------------------------------------===//
-
-+/// Return the current position within the stream, not counting the bytes
-+/// currently in the buffer.
-+uint64_t raw_string_ostream::current_pos() const { return OS.size(); }
-+
- raw_string_ostream::~raw_string_ostream() {
- flush();
- }