diff --git a/xo-object/src/object/ObjectConverter.cpp b/xo-object/src/object/ObjectConverter.cpp index 71ed408a..a7d0ed4d 100644 --- a/xo-object/src/object/ObjectConverter.cpp +++ b/xo-object/src/object/ObjectConverter.cpp @@ -177,9 +177,10 @@ namespace xo { return (cvt->cvt_to_object_)(mm, x_tp); } else { if (throw_flag) { - throw std::runtime_error(tostr("no to-object-converter available for instance of type", - xtag("id", x_tp.td()->id()), - xtag("name", x_tp.td()->short_name()))); + throw std::runtime_error + (tostr("no to-object-converter available for instance of type", + xtag("id", x_tp.td()->id()), + xtag("name", x_tp.td()->short_name()))); } return nullptr;