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
a27ce413
Commit
a27ce413
authored
Jul 20, 2015
by
Matthias Vallentin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix -Winconsistent-missing-override warnings
parent
4c498df6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
libcaf_core/caf/actor_companion.hpp
libcaf_core/caf/actor_companion.hpp
+1
-1
libcaf_core/caf/scheduler/coordinator.hpp
libcaf_core/caf/scheduler/coordinator.hpp
+1
-1
libcaf_core/src/group_manager.cpp
libcaf_core/src/group_manager.cpp
+2
-2
libcaf_core/test/actor_lifetime.cpp
libcaf_core/test/actor_lifetime.cpp
+1
-1
libcaf_core/test/dynamic_spawn.cpp
libcaf_core/test/dynamic_spawn.cpp
+1
-1
libcaf_io/test/remote_actor.cpp
libcaf_io/test/remote_actor.cpp
+2
-2
No files found.
libcaf_core/caf/actor_companion.hpp
View file @
a27ce413
...
...
@@ -57,7 +57,7 @@ public:
void
enqueue
(
const
actor_addr
&
sender
,
message_id
mid
,
message
content
,
execution_unit
*
host
)
override
;
void
initialize
();
void
initialize
()
override
;
private:
// set by parent to define custom enqueue action
...
...
libcaf_core/caf/scheduler/coordinator.hpp
View file @
a27ce413
...
...
@@ -132,7 +132,7 @@ protected:
policy_
.
foreach_central_resumable
(
this
,
f
);
}
void
enqueue
(
resumable
*
ptr
)
{
void
enqueue
(
resumable
*
ptr
)
override
{
policy_
.
central_enqueue
(
this
,
ptr
);
}
...
...
libcaf_core/src/group_manager.cpp
View file @
a27ce413
...
...
@@ -121,7 +121,7 @@ public:
erase_subscriber
(
who
);
}
void
serialize
(
serializer
*
sink
);
void
serialize
(
serializer
*
sink
)
override
;
void
stop
()
override
{
CAF_LOG_TRACE
(
""
);
...
...
@@ -151,7 +151,7 @@ public:
// nop
}
void
on_exit
()
{
void
on_exit
()
override
{
acquaintances_
.
clear
();
group_
.
reset
();
}
...
...
libcaf_core/test/actor_lifetime.cpp
View file @
a27ce413
...
...
@@ -41,7 +41,7 @@ class testee : public event_based_actor {
public:
testee
();
~
testee
();
void
on_exit
();
void
on_exit
()
override
;
behavior
make_behavior
()
override
;
};
...
...
libcaf_core/test/dynamic_spawn.cpp
View file @
a27ce413
...
...
@@ -718,7 +718,7 @@ CAF_TEST(kr34t0r) {
}
};
}
void
on_exit
()
{
void
on_exit
()
override
{
pal_
=
invalid_actor
;
// break cycle
}
...
...
libcaf_io/test/remote_actor.cpp
View file @
a27ce413
...
...
@@ -250,7 +250,7 @@ public:
return
spawn_ping
();
}
void
on_exit
()
{
void
on_exit
()
override
{
++
s_on_exit_called
;
}
...
...
@@ -340,7 +340,7 @@ public:
// nop
}
void
on_exit
()
{
void
on_exit
()
override
{
++
s_on_exit_called
;
}
...
...
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