Commit 8d539514 authored by Dominik Charousset's avatar Dominik Charousset

Remove deubg output

parent 74c2590f
......@@ -65,7 +65,6 @@ void* message::get_mutable(size_t p) {
}
error message::load(size_t pos, deserializer& source) {
printf("load %d\n", (int) pos);
CAF_ASSERT(vals_ != nullptr);
return vals_->load(pos, source);
}
......@@ -99,7 +98,6 @@ type_erased_value_ptr message::copy(size_t pos) const {
}
error message::save(size_t pos, serializer& sink) const {
printf("save %d\n", (int) pos);
CAF_ASSERT(vals_ != nullptr);
return vals_->save(pos, sink);
}
......
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