diff options
author | Josh Blum | 2013-07-31 01:10:32 -0700 |
---|---|---|
committer | Josh Blum | 2013-07-31 01:10:32 -0700 |
commit | 20b413bce5c22bcc44bfc58105288df94a0a592d (patch) | |
tree | e4df40c82c89fda275ec36df42715b27b7a75708 /lib/callable.cpp | |
parent | 79128f57c01a2453a71f9b0aa00d919c0a79666f (diff) | |
parent | 8fc35a79f138cc9c5d60affd20ca91767d16927f (diff) | |
download | sandhi-20b413bce5c22bcc44bfc58105288df94a0a592d.tar.gz sandhi-20b413bce5c22bcc44bfc58105288df94a0a592d.tar.bz2 sandhi-20b413bce5c22bcc44bfc58105288df94a0a592d.zip |
Merge branch 'gras_tool3'
Diffstat (limited to 'lib/callable.cpp')
-rw-r--r-- | lib/callable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/callable.cpp b/lib/callable.cpp index 59ada7f..461eebd 100644 --- a/lib/callable.cpp +++ b/lib/callable.cpp @@ -67,5 +67,5 @@ CallableRegistryEntry::~CallableRegistryEntry(void) void CallableRegistryEntry::arg_check(const PMCList &args, const size_t nargs) { if (args.size() != nargs) throw std::runtime_error(str(boost::format( - "callable expected %u arguments but for %u") % nargs % args.size())); + "callable expected %u arguments but got %u") % nargs % args.size())); } |