mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
41 lines
1.6 KiB
Diff
41 lines
1.6 KiB
Diff
From 569f6b35d8bcdb2ae5ff84549cd92cfc0899675b Mon Sep 17 00:00:00 2001
|
|
From: Aster Boese <asterboese@mailbox.org>
|
|
Date: Tue, 23 Apr 2024 00:20:13 -0400
|
|
Subject: [PATCH] remove () from boost placeholders
|
|
|
|
---
|
|
src/core/trust/daemon.cpp | 4 ++--
|
|
src/core/trust/remote/posix.cpp | 2 +-
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/core/trust/daemon.cpp b/src/core/trust/daemon.cpp
|
|
index 82c817a..6b226bd 100644
|
|
--- a/src/core/trust/daemon.cpp
|
|
+++ b/src/core/trust/daemon.cpp
|
|
@@ -502,8 +502,8 @@ struct Shell : public std::enable_shared_from_this<Shell>
|
|
boost::bind(
|
|
&Shell::read_finished,
|
|
shared_from_this(),
|
|
- boost::asio::placeholders::error(),
|
|
- boost::asio::placeholders::bytes_transferred()));
|
|
+ boost::asio::placeholders::error,
|
|
+ boost::asio::placeholders::bytes_transferred));
|
|
}
|
|
|
|
// Invoked in case of errors or if one line has been read from stdin.
|
|
diff --git a/src/core/trust/remote/posix.cpp b/src/core/trust/remote/posix.cpp
|
|
index d8750dd..fb159b4 100644
|
|
--- a/src/core/trust/remote/posix.cpp
|
|
+++ b/src/core/trust/remote/posix.cpp
|
|
@@ -126,7 +126,7 @@ void remote::posix::Stub::start_accept()
|
|
session->socket,
|
|
boost::bind(&remote::posix::Stub::on_new_session,
|
|
shared_from_this(),
|
|
- boost::asio::placeholders::error(),
|
|
+ boost::asio::placeholders::error,
|
|
session));
|
|
}
|
|
|
|
--
|
|
GitLab
|
|
|