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
7a9a42b6
Commit
7a9a42b6
authored
May 12, 2015
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Static assertion for announce(); close #284
parent
307bec1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
libcaf_core/caf/announce.hpp
libcaf_core/caf/announce.hpp
+4
-0
No files found.
libcaf_core/caf/announce.hpp
View file @
7a9a42b6
...
...
@@ -31,6 +31,7 @@
#include "caf/detail/abstract_uniform_type_info.hpp"
#include "caf/detail/safe_equal.hpp"
#include "caf/detail/type_traits.hpp"
#include "caf/detail/default_uniform_type_info.hpp"
namespace
caf
{
...
...
@@ -135,6 +136,9 @@ compound_member(const std::pair<GRes (Parent::*)() const,
*/
template
<
class
T
,
class
...
Ts
>
inline
const
uniform_type_info
*
announce
(
std
::
string
tname
,
const
Ts
&
...
xs
)
{
static_assert
(
std
::
is_pod
<
T
>::
value
||
std
::
is_empty
<
T
>::
value
||
detail
::
is_comparable
<
T
,
T
>::
value
,
"T is neither a POD, nor empty, nor comparable with '=='"
);
auto
ptr
=
new
detail
::
default_uniform_type_info
<
T
>
(
std
::
move
(
tname
),
xs
...);
return
announce
(
typeid
(
T
),
uniform_type_info_ptr
{
ptr
});
}
...
...
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