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
e65ac013
Commit
e65ac013
authored
Feb 01, 2018
by
Joseph Noir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix throw in noexcept warning
parent
d6be91aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
libcaf_core/src/type_erased_tuple.cpp
libcaf_core/src/type_erased_tuple.cpp
+2
-2
No files found.
libcaf_core/src/type_erased_tuple.cpp
View file @
e65ac013
...
@@ -100,11 +100,11 @@ uint32_t empty_type_erased_tuple::type_token() const noexcept {
...
@@ -100,11 +100,11 @@ uint32_t empty_type_erased_tuple::type_token() const noexcept {
}
}
auto
empty_type_erased_tuple
::
type
(
size_t
)
const
noexcept
->
rtti_pair
{
auto
empty_type_erased_tuple
::
type
(
size_t
)
const
noexcept
->
rtti_pair
{
CAF_
RAISE_ERROR
(
"empty_type_erased_tuple::type"
);
CAF_
CRITICAL
(
"empty_type_erased_tuple::type"
);
}
}
const
void
*
empty_type_erased_tuple
::
get
(
size_t
)
const
noexcept
{
const
void
*
empty_type_erased_tuple
::
get
(
size_t
)
const
noexcept
{
CAF_
RAISE_ERROR
(
"empty_type_erased_tuple::get"
);
CAF_
CRITICAL
(
"empty_type_erased_tuple::get"
);
}
}
std
::
string
empty_type_erased_tuple
::
stringify
(
size_t
)
const
{
std
::
string
empty_type_erased_tuple
::
stringify
(
size_t
)
const
{
...
...
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