diff options
Diffstat (limited to '045space_surround.cc')
-rw-r--r-- | 045space_surround.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/045space_surround.cc b/045space_surround.cc index 94a717a0..a29ad67c 100644 --- a/045space_surround.cc +++ b/045space_surround.cc @@ -42,7 +42,7 @@ long long int space_index(const reagent& x) { for (long long int i = /*skip name:type*/1; i < SIZE(x.properties); ++i) { if (x.properties.at(i).first == "space") { if (SIZE(x.properties.at(i).second) != 1) - raise << maybe(current_recipe_name()) << "/space metadata should take exactly one value in " << x.original_string << '\n' << end(); + raise_error << maybe(current_recipe_name()) << "/space metadata should take exactly one value in " << x.original_string << '\n' << end(); return to_integer(x.properties.at(i).second.at(0)); } } |