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
89e93c71
Commit
89e93c71
authored
Nov 12, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work around annoying GCC bug w/ friend declaration
parent
95724bd5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cppa/detail/abstract_actor.hpp
cppa/detail/abstract_actor.hpp
+1
-1
cppa/scheduler.hpp
cppa/scheduler.hpp
+1
-1
No files found.
cppa/detail/abstract_actor.hpp
View file @
89e93c71
...
...
@@ -92,7 +92,7 @@ class abstract_actor_base<Base, true> : public Base {
template
<
class
Base
>
class
abstract_actor
:
public
abstract_actor_base
<
Base
,
std
::
is_base_of
<
local_actor
,
Base
>::
value
>
{
friend
class
self_type
;
friend
class
::
cppa
::
self_type
;
typedef
abstract_actor_base
<
Base
,
std
::
is_base_of
<
local_actor
,
Base
>::
value
>
super
;
typedef
std
::
lock_guard
<
std
::
mutex
>
guard_type
;
...
...
cppa/scheduler.hpp
View file @
89e93c71
...
...
@@ -36,7 +36,6 @@
#include <cstdint>
#include <functional>
#include "cppa/self.hpp"
#include "cppa/atom.hpp"
#include "cppa/actor.hpp"
#include "cppa/channel.hpp"
...
...
@@ -49,6 +48,7 @@
namespace
cppa
{
class
self_type
;
class
scheduled_actor
;
class
scheduler_helper
;
...
...
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