Commit 0dd1db38 authored by Dominik Charousset's avatar Dominik Charousset

Add missing semicolons

parent 9a39a499
...@@ -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
......
...@@ -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 {
......
...@@ -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>,
......
...@@ -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<
......
...@@ -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,
......
...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment