Remove whitespaces before double colon in errors and logs

This commit is contained in:
Pavel Janík 2015-01-08 11:44:25 +01:00 committed by Cory Fields
parent 3800135ad3
commit 5262fde0ec
28 changed files with 217 additions and 217 deletions

View file

@ -60,7 +60,7 @@ bool CastToBool(const valtype& vch)
static inline void popstack(vector<valtype>& stack)
{
if (stack.empty())
throw runtime_error("popstack() : stack empty");
throw runtime_error("popstack(): stack empty");
stack.pop_back();
}