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
1c21b1e6
Commit
1c21b1e6
authored
Sep 22, 2017
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove debug output
parent
e7052c72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
libcaf_core/test/actor_lifetime.cpp
libcaf_core/test/actor_lifetime.cpp
+0
-3
No files found.
libcaf_core/test/actor_lifetime.cpp
View file @
1c21b1e6
...
@@ -47,13 +47,11 @@ std::atomic<long> s_pending_on_exits;
...
@@ -47,13 +47,11 @@ std::atomic<long> s_pending_on_exits;
class
testee
:
public
event_based_actor
{
class
testee
:
public
event_based_actor
{
public:
public:
testee
(
actor_config
&
cfg
)
:
event_based_actor
(
cfg
)
{
testee
(
actor_config
&
cfg
)
:
event_based_actor
(
cfg
)
{
printf
(
"%s %d
\n
"
,
__FILE__
,
__LINE__
);
++
s_testees
;
++
s_testees
;
++
s_pending_on_exits
;
++
s_pending_on_exits
;
}
}
~
testee
()
override
{
~
testee
()
override
{
printf
(
"%s %d
\n
"
,
__FILE__
,
__LINE__
);
--
s_testees
;
--
s_testees
;
}
}
...
@@ -62,7 +60,6 @@ printf("%s %d\n", __FILE__, __LINE__);
...
@@ -62,7 +60,6 @@ printf("%s %d\n", __FILE__, __LINE__);
}
}
void
on_exit
()
override
{
void
on_exit
()
override
{
printf
(
"%s %d
\n
"
,
__FILE__
,
__LINE__
);
--
s_pending_on_exits
;
--
s_pending_on_exits
;
}
}
...
...
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