Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
d6115e94
Commit
d6115e94
authored
Oct 01, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build on MSVC
parent
27b8febd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
libcaf_net/caf/net/make_endpoint_manager.hpp
libcaf_net/caf/net/make_endpoint_manager.hpp
+2
-2
libcaf_net/caf/net/socket.hpp
libcaf_net/caf/net/socket.hpp
+1
-1
No files found.
libcaf_net/caf/net/make_endpoint_manager.hpp
View file @
d6115e94
...
...
@@ -26,8 +26,8 @@
namespace
caf
::
net
{
template
<
class
Transport
>
endpoint_manager_ptr
CAF_NET_EXPORT
make_endpoint_manager
(
const
multiplexer_ptr
&
mpx
,
actor_system
&
sys
,
Transport
trans
)
{
endpoint_manager_ptr
make_endpoint_manager
(
const
multiplexer_ptr
&
mpx
,
actor_system
&
sys
,
Transport
trans
)
{
using
impl
=
endpoint_manager_impl
<
Transport
>
;
return
make_counted
<
impl
>
(
mpx
,
sys
,
std
::
move
(
trans
));
}
...
...
libcaf_net/caf/net/socket.hpp
View file @
d6115e94
...
...
@@ -64,7 +64,7 @@ constexpr auto invalid_socket = socket{invalid_socket_id};
/// Converts between different socket types.
template
<
class
To
,
class
From
>
To
CAF_NET_EXPORT
socket_cast
(
From
x
)
{
To
socket_cast
(
From
x
)
{
return
To
{
x
.
id
};
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment