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
478c9c04
Commit
478c9c04
authored
Jun 29, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
maintenance
parent
0f8c067e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
20 deletions
+30
-20
cppa/cow_tuple.hpp
cppa/cow_tuple.hpp
+0
-1
cppa/detail/abstract_tuple.hpp
cppa/detail/abstract_tuple.hpp
+0
-2
cppa/detail/implicit_conversions.hpp
cppa/detail/implicit_conversions.hpp
+30
-17
No files found.
cppa/cow_tuple.hpp
View file @
478c9c04
...
...
@@ -43,7 +43,6 @@
#include "cppa/util/at.hpp"
#include "cppa/util/fixed_vector.hpp"
#include "cppa/util/replace_type.hpp"
#include "cppa/util/is_comparable.hpp"
#include "cppa/util/compare_tuples.hpp"
#include "cppa/util/is_legal_tuple_type.hpp"
...
...
cppa/detail/abstract_tuple.hpp
View file @
478c9c04
...
...
@@ -120,10 +120,8 @@ struct types_only_eq_type {
};
namespace
{
constexpr
full_eq_type
full_eq
;
constexpr
types_only_eq_type
types_only_eq
;
}
// namespace <anonymous>
}
}
// namespace cppa::detail
...
...
cppa/detail/implicit_conversions.hpp
View file @
478c9c04
...
...
@@ -47,29 +47,42 @@ namespace cppa { namespace detail {
template
<
typename
T
>
struct
implicit_conversions
{
typedef
typename
util
::
replace_type
<
T
,
std
::
string
,
std
::
is_same
<
T
,
const
char
*>
,
std
::
is_same
<
T
,
char
*>
,
util
::
is_array_of
<
T
,
char
>
,
util
::
is_array_of
<
T
,
const
char
>
>::
type
typedef
typename
util
::
replace_type
<
T
,
std
::
string
,
std
::
is_same
<
T
,
const
char
*>
,
std
::
is_same
<
T
,
char
*>
,
util
::
is_array_of
<
T
,
char
>
,
util
::
is_array_of
<
T
,
const
char
>
>::
type
subtype1
;
typedef
typename
util
::
replace_type
<
subtype1
,
std
::
u16string
,
std
::
is_same
<
subtype1
,
const
char16_t
*>
,
std
::
is_same
<
subtype1
,
char16_t
*>
,
util
::
is_array_of
<
subtype1
,
char16_t
>>::
type
typedef
typename
util
::
replace_type
<
subtype1
,
std
::
u16string
,
std
::
is_same
<
subtype1
,
const
char16_t
*>
,
std
::
is_same
<
subtype1
,
char16_t
*>
,
util
::
is_array_of
<
subtype1
,
char16_t
>
>::
type
subtype2
;
typedef
typename
util
::
replace_type
<
subtype2
,
std
::
u32string
,
std
::
is_same
<
subtype2
,
const
char32_t
*>
,
std
::
is_same
<
subtype2
,
char32_t
*>
,
util
::
is_array_of
<
subtype2
,
char32_t
>>::
type
typedef
typename
util
::
replace_type
<
subtype2
,
std
::
u32string
,
std
::
is_same
<
subtype2
,
const
char32_t
*>
,
std
::
is_same
<
subtype2
,
char32_t
*>
,
util
::
is_array_of
<
subtype2
,
char32_t
>
>::
type
subtype3
;
typedef
typename
util
::
replace_type
<
subtype3
,
actor_ptr
,
std
::
is_convertible
<
T
,
actor
*>
,
std
::
is_convertible
<
T
,
local_actor
*>
,
std
::
is_same
<
self_type
,
T
>>::
type
typedef
typename
util
::
replace_type
<
subtype3
,
actor_ptr
,
std
::
is_convertible
<
T
,
actor
*>
,
std
::
is_convertible
<
T
,
local_actor
*>
,
std
::
is_same
<
self_type
,
T
>
>::
type
type
;
};
...
...
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