Commit f1cdfccd authored by Matthias Vallentin's avatar Matthias Vallentin Committed by Marian Triebe

Support overriding of error renderers

parent 8034063d
...@@ -356,7 +356,7 @@ actor_system_config::add_actor_factory(std::string name, actor_factory fun) { ...@@ -356,7 +356,7 @@ actor_system_config::add_actor_factory(std::string name, actor_factory fun) {
actor_system_config& actor_system_config&
actor_system_config::add_error_category(atom_value x, error_renderer y) { actor_system_config::add_error_category(atom_value x, error_renderer y) {
error_renderers.emplace(x, y); error_renderers[x] = y;
return *this; return *this;
} }
......
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