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
0dd1db38
Commit
0dd1db38
authored
Jan 17, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing semicolons
parent
9a39a499
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
16 deletions
+16
-16
examples/broker/simple_http_broker.cpp
examples/broker/simple_http_broker.cpp
+1
-1
examples/curl/curl_fuse.cpp
examples/curl/curl_fuse.cpp
+5
-5
examples/dynamic_behavior/dining_philosophers.cpp
examples/dynamic_behavior/dining_philosophers.cpp
+4
-4
examples/message_passing/fan_out_request.cpp
examples/message_passing/fan_out_request.cpp
+3
-3
examples/message_passing/fixed_stack.cpp
examples/message_passing/fixed_stack.cpp
+2
-2
examples/remoting/group_chat.cpp
examples/remoting/group_chat.cpp
+1
-1
No files found.
examples/broker/simple_http_broker.cpp
View file @
0dd1db38
...
@@ -13,7 +13,7 @@ using namespace caf::io;
...
@@ -13,7 +13,7 @@ using namespace caf::io;
namespace
{
namespace
{
CAF_MSG_TYPE_ADD_ATOM
(
tick_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
tick_atom
)
;
constexpr
const
char
http_ok
[]
=
R"__(HTTP/1.1 200 OK
constexpr
const
char
http_ok
[]
=
R"__(HTTP/1.1 200 OK
Content-Type: text/plain
Content-Type: text/plain
...
...
examples/curl/curl_fuse.cpp
View file @
0dd1db38
...
@@ -60,11 +60,11 @@ using namespace caf;
...
@@ -60,11 +60,11 @@ using namespace caf;
using
buffer_type
=
std
::
vector
<
char
>
;
using
buffer_type
=
std
::
vector
<
char
>
;
CAF_MSG_TYPE_ADD_ATOM
(
read_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
read_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
fail_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
fail_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
next_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
next_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
reply_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
reply_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
finished_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
finished_atom
)
;
namespace
color
{
namespace
color
{
...
...
examples/dynamic_behavior/dining_philosophers.cpp
View file @
0dd1db38
...
@@ -23,10 +23,10 @@ using namespace caf;
...
@@ -23,10 +23,10 @@ using namespace caf;
namespace
{
namespace
{
// atoms for chopstick and philosopher interfaces
// atoms for chopstick and philosopher interfaces
CAF_MSG_TYPE_ADD_ATOM
(
take_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
take_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
taken_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
taken_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
eat_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
eat_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
think_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
think_atom
)
;
// a chopstick
// a chopstick
using
chopstick
=
typed_actor
<
replies_to
<
take_atom
>::
with
<
taken_atom
,
bool
>
,
using
chopstick
=
typed_actor
<
replies_to
<
take_atom
>::
with
<
taken_atom
,
bool
>
,
...
...
examples/message_passing/fan_out_request.cpp
View file @
0dd1db38
...
@@ -24,9 +24,9 @@ using std::endl;
...
@@ -24,9 +24,9 @@ using std::endl;
using
std
::
chrono
::
seconds
;
using
std
::
chrono
::
seconds
;
using
namespace
caf
;
using
namespace
caf
;
CAF_MSG_TYPE_ADD_ATOM
(
row_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
row_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
column_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
column_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
average_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
average_atom
)
;
/// A simple actor for storing an integer value.
/// A simple actor for storing an integer value.
using
cell
=
typed_actor
<
using
cell
=
typed_actor
<
...
...
examples/message_passing/fixed_stack.cpp
View file @
0dd1db38
...
@@ -8,8 +8,8 @@ using namespace caf;
...
@@ -8,8 +8,8 @@ using namespace caf;
namespace
{
namespace
{
CAF_MSG_TYPE_ADD_ATOM
(
pop_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
pop_atom
)
;
CAF_MSG_TYPE_ADD_ATOM
(
push_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
push_atom
)
;
enum
class
fixed_stack_errc
:
uint8_t
{
enum
class
fixed_stack_errc
:
uint8_t
{
push_to_full
=
1
,
push_to_full
=
1
,
...
...
examples/remoting/group_chat.cpp
View file @
0dd1db38
...
@@ -26,7 +26,7 @@ using namespace caf;
...
@@ -26,7 +26,7 @@ using namespace caf;
namespace
{
namespace
{
CAF_MSG_TYPE_ADD_ATOM
(
broadcast_atom
)
CAF_MSG_TYPE_ADD_ATOM
(
broadcast_atom
)
;
struct
line
{
struct
line
{
string
str
;
string
str
;
...
...
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