mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-11 03:32:17 +01:00
This change: * Adds a patch (ipcz-missing-include.patch) for missing includes in //third_party/ipcz * Adds a patch (material-color-stdround.patch) for an incorrect use of libc round() instead of C++ std::round() in //third_party/material_color_utilities * Removes a hunk of libstdc++13.patch which was applied upstream * Drops three of the extra patches which were needed against 116, because all three of these were fixed upstream in 117
21 lines
451 B
Diff
21 lines
451 B
Diff
--- a/third_party/ipcz/src/ipcz/router_link.h
|
|
+++ b/third_party/ipcz/src/ipcz/router_link.h
|
|
@@ -7,6 +7,7 @@
|
|
|
|
#include <cstddef>
|
|
#include <functional>
|
|
+#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
--- a/third_party/ipcz/src/ipcz/remote_router_link.h
|
|
+++ b/third_party/ipcz/src/ipcz/remote_router_link.h
|
|
@@ -7,6 +7,7 @@
|
|
|
|
#include <atomic>
|
|
#include <functional>
|
|
+#include <memory>
|
|
#include <vector>
|
|
|
|
#include "ipcz/fragment_ref.h"
|