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
77b1e3d0
Commit
77b1e3d0
authored
Sep 21, 2011
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor bugfix
parent
07fbff85
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
cppa/message.hpp
cppa/message.hpp
+1
-1
cppa/tuple.hpp
cppa/tuple.hpp
+2
-1
cppa/util/is_legal_tuple_type.hpp
cppa/util/is_legal_tuple_type.hpp
+2
-1
No files found.
cppa/message.hpp
View file @
77b1e3d0
...
...
@@ -83,7 +83,7 @@ class message
template
<
typename
...
Args
>
message
::
message
(
const
actor_ptr
&
from
,
const
channel_ptr
&
to
,
const
Args
&
...
args
)
:
m_content
(
new
msg_content
(
from
,
to
,
tuple
<
Args
...
>
(
args
...)))
:
m_content
(
new
msg_content
(
from
,
to
,
make_tuple
(
args
...)))
//
tuple<Args...>(args...)))
{
}
...
...
cppa/tuple.hpp
View file @
77b1e3d0
...
...
@@ -42,7 +42,8 @@ struct chars_to_string
typedef
typename
util
::
replace_type
<
T
,
std
::
string
,
std
::
is_same
<
T
,
const
char
*>
,
std
::
is_same
<
T
,
char
*>
,
is_array_of
<
T
,
char
>>::
type
is_array_of
<
T
,
char
>
,
is_array_of
<
T
,
const
char
>
>::
type
subtype1
;
typedef
typename
util
::
replace_type
<
subtype1
,
std
::
u16string
,
...
...
cppa/util/is_legal_tuple_type.hpp
View file @
77b1e3d0
...
...
@@ -9,7 +9,8 @@ template<typename T>
struct
is_legal_tuple_type
{
static
const
bool
value
=
std
::
is_pointer
<
T
>::
value
==
false
&&
std
::
is_reference
<
T
>::
value
==
false
;
&&
std
::
is_reference
<
T
>::
value
==
false
&&
std
::
is_array
<
T
>::
value
==
false
;
};
}
}
// namespace cppa::util
...
...
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