Commit a504e151 authored by Dominik Charousset's avatar Dominik Charousset

Fix bulid on GCC

parent 7ae65c39
...@@ -243,6 +243,7 @@ if(CAF_MORE_WARNINGS) ...@@ -243,6 +243,7 @@ if(CAF_MORE_WARNINGS)
"-Wno-global-constructors -Wno-missing-prototypes " "-Wno-global-constructors -Wno-missing-prototypes "
"-Wno-c++98-compat-pedantic -Wno-unused-member-function " "-Wno-c++98-compat-pedantic -Wno-unused-member-function "
"-Wno-unused-const-variable -Wno-switch-enum " "-Wno-unused-const-variable -Wno-switch-enum "
"-Wno-abstract-vbase-init "
"-Wno-missing-noreturn -Wno-covered-switch-default") "-Wno-missing-noreturn -Wno-covered-switch-default")
elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU") elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
set(WFLAGS "-Waddress -Wall -Warray-bounds " set(WFLAGS "-Waddress -Wall -Warray-bounds "
......
...@@ -39,7 +39,7 @@ public: ...@@ -39,7 +39,7 @@ public:
// -- constructors, destructors, and assignment operators -------------------- // -- constructors, destructors, and assignment operators --------------------
stream_source(scheduled_actor* self) : out_(self) { stream_source(scheduled_actor* self) : stream_manager(self), out_(self) {
// nop // nop
} }
......
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