unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 9c9a9fc09ef1465012847506f5350019a38d0f16 1300 bytes (raw)
name: gnu/packages/patches/chromium-gcc-unique-ptr.patch 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
Help GCC resolve <UrlIndex>.

Taken from upstream:
https://chromium.googlesource.com/chromium/src/+/56cb5f7da1025f6db869e840ed34d3b98b9ab899

diff --git a/components/bookmarks/browser/bookmark_storage.cc b/components/bookmarks/browser/bookmark_storage.cc
index 1633ba1..3ae0c62 100644
--- a/components/bookmarks/browser/bookmark_storage.cc
+++ b/components/bookmarks/browser/bookmark_storage.cc
@@ -158,6 +158,10 @@
   url_index_ = std::make_unique<UrlIndex>(std::move(root_node_));
 }
 
+std::unique_ptr<UrlIndex> BookmarkLoadDetails::owned_url_index() {
+  return std::move(url_index_);
+}
+
 BookmarkPermanentNode* BookmarkLoadDetails::CreatePermanentNode(
     BookmarkClient* client,
     BookmarkNode::Type type) {
diff --git a/components/bookmarks/browser/bookmark_storage.h b/components/bookmarks/browser/bookmark_storage.h
index 08df5bb..0a1b1a1 100644
--- a/components/bookmarks/browser/bookmark_storage.h
+++ b/components/bookmarks/browser/bookmark_storage.h
@@ -104,7 +104,7 @@
   bool ids_reassigned() const { return ids_reassigned_; }
 
   void CreateUrlIndex();
-  std::unique_ptr<UrlIndex> owned_url_index() { return std::move(url_index_); }
+  std::unique_ptr<UrlIndex> owned_url_index();
 
  private:
   // Creates one of the possible permanent nodes (bookmark bar node, other node

debug log:

solving 9c9a9fc09 ...
found 9c9a9fc09 in https://yhetil.org/guix-patches/87tvo9c6cs.fsf@fastmail.com/

applying [1/1] https://yhetil.org/guix-patches/87tvo9c6cs.fsf@fastmail.com/
diff --git a/gnu/packages/patches/chromium-gcc-unique-ptr.patch b/gnu/packages/patches/chromium-gcc-unique-ptr.patch
new file mode 100644
index 000000000..9c9a9fc09

1:19: trailing whitespace.
 
1:33: trailing whitespace.
 
1:37: trailing whitespace.
 
Checking patch gnu/packages/patches/chromium-gcc-unique-ptr.patch...
Applied patch gnu/packages/patches/chromium-gcc-unique-ptr.patch cleanly.
warning: 3 lines add whitespace errors.

index at:
100644 9c9a9fc09ef1465012847506f5350019a38d0f16	gnu/packages/patches/chromium-gcc-unique-ptr.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).