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
8e7a9375
Commit
8e7a9375
authored
Apr 20, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed debug output
parent
69f9a6d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
cppa/detail/abstract_scheduled_actor.hpp
cppa/detail/abstract_scheduled_actor.hpp
+1
-7
No files found.
cppa/detail/abstract_scheduled_actor.hpp
View file @
8e7a9375
...
...
@@ -138,13 +138,7 @@ class abstract_scheduled_actor : public abstract_actor<scheduled_actor>
bool
pending_enqueue
(
actor
*
sender
,
any_tuple
msg
)
{
//return enqueue_node(super::fetch_node(sender, std::move(msg)), pending);
if
(
enqueue_node
(
super
::
fetch_node
(
sender
,
std
::
move
(
msg
)),
pending
))
{
std
::
cout
<<
"PENDING ENQUEUE SUCCESSFULL
\n
"
;
return
true
;
}
return
false
;
return
enqueue_node
(
super
::
fetch_node
(
sender
,
std
::
move
(
msg
)),
pending
);
}
void
quit
(
std
::
uint32_t
reason
)
...
...
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