minor indentation change

This commit is contained in:
Wenzel Jakob 2016-10-22 13:08:44 -04:00
parent f4eec65526
commit c0d19192d2

View File

@ -278,7 +278,8 @@ public:
if (copy_constructor)
wrapper->value = copy_constructor(src);
else
throw cast_error("return_value_policy = copy, but the object is non-copyable!");
throw cast_error("return_value_policy = copy, but the "
"object is non-copyable!");
wrapper->owned = true;
break;
@ -288,7 +289,8 @@ public:
else if (copy_constructor)
wrapper->value = copy_constructor(src);
else
throw cast_error("return_value_policy = move, but the object is neither movable nor copyable!");
throw cast_error("return_value_policy = move, but the "
"object is neither movable nor copyable!");
wrapper->owned = true;
break;