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
78343097
Commit
78343097
authored
Jul 09, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #33 from mavam/topic/clang-workaround
Clang bug workaround
parents
a37e6456
ab779d9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
cppa/behavior.hpp
cppa/behavior.hpp
+7
-3
No files found.
cppa/behavior.hpp
View file @
78343097
...
@@ -78,9 +78,13 @@ class behavior : public partial_function {
...
@@ -78,9 +78,13 @@ class behavior : public partial_function {
d
,
f
))
{
d
,
f
))
{
}
}
template
<
typename
...
Cases
,
typename
...
Args
>
template
<
typename
...
Cases
>
behavior
(
const
match_expr
<
Cases
...
>&
arg0
,
const
Args
&
...
args
)
behavior
(
const
match_expr
<
Cases
...
>&
arg0
)
:
super
(
match_expr_concat
(
arg0
,
args
...))
{
}
:
super
(
arg0
)
{
}
template
<
typename
...
Cases
,
typename
Arg1
,
typename
...
Args
>
behavior
(
const
match_expr
<
Cases
...
>&
arg0
,
const
Arg1
&
arg1
,
const
Args
&
...
args
)
:
super
(
match_expr_concat
(
arg0
,
arg1
,
args
...))
{
}
inline
void
handle_timeout
()
{
inline
void
handle_timeout
()
{
m_impl
->
handle_timeout
();
m_impl
->
handle_timeout
();
...
...
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