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
b79a5b38
Commit
b79a5b38
authored
Jul 26, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply MSVC fix suggested hhendriks, relates #302
parent
983d14f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
libcaf_core/caf/catch_all.hpp
libcaf_core/caf/catch_all.hpp
+3
-1
No files found.
libcaf_core/caf/catch_all.hpp
View file @
b79a5b38
...
@@ -31,7 +31,9 @@ struct catch_all {
...
@@ -31,7 +31,9 @@ struct catch_all {
F
handler
;
F
handler
;
catch_all
(
catch_all
&&
)
=
default
;
catch_all
(
catch_all
&&
x
)
:
handler
(
std
::
move
(
x
.
handler
))
{
// nop
}
template
<
class
T
>
template
<
class
T
>
catch_all
(
T
&&
x
)
:
handler
(
std
::
forward
<
T
>
(
x
))
{
catch_all
(
T
&&
x
)
:
handler
(
std
::
forward
<
T
>
(
x
))
{
...
...
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