summaryrefslogtreecommitdiff
path: root/devel/electron6/files/patch-third__party_snappy_src_snappy.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron6/files/patch-third__party_snappy_src_snappy.h')
-rw-r--r--devel/electron6/files/patch-third__party_snappy_src_snappy.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/electron6/files/patch-third__party_snappy_src_snappy.h b/devel/electron6/files/patch-third__party_snappy_src_snappy.h
deleted file mode 100644
index 9882e6de01a6..000000000000
--- a/devel/electron6/files/patch-third__party_snappy_src_snappy.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- third_party/snappy/src/snappy.h.orig 2019-09-10 10:46:35 UTC
-+++ third_party/snappy/src/snappy.h
-@@ -73,7 +73,7 @@ namespace snappy {
- // Original contents of *output are lost.
- //
- // REQUIRES: "input[]" is not an alias of "*output".
-- size_t Compress(const char* input, size_t input_length, string* output);
-+ size_t Compress(const char* input, size_t input_length, std::string* output);
-
- // Decompresses "compressed[0,compressed_length-1]" to "*uncompressed".
- // Original contents of "*uncompressed" are lost.
-@@ -82,7 +82,7 @@ namespace snappy {
- //
- // returns false if the message is corrupted and could not be decompressed
- bool Uncompress(const char* compressed, size_t compressed_length,
-- string* uncompressed);
-+ std::string* uncompressed);
-
- // Decompresses "compressed" to "*uncompressed".
- //