diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/value.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/value.cc b/src/value.cc index 6ce46f5c..c3a3a05b 100644 --- a/src/value.cc +++ b/src/value.cc @@ -617,6 +617,9 @@ value_t& value_t::operator*=(const value_t& val) break; } + DEBUG("value.multiply.error", "Left: " << *this); + DEBUG("value.multiply.error", "Right: " << val); + throw_(value_error, _("Cannot multiply %1 with %2") << label() << val.label()); return *this; |