aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cmdline.cpp
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2013-05-12 18:14:02 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2014-02-15 15:21:53 +0100
commit1f8d558597098f78aeba4ed5f70824f98dc60060 (patch)
treee3ed4e5f5fdb586ebda789d8516ec9473f5fb5ba /src/cmdline.cpp
parentabfabda5f54ac903bc990340a684e14e5e2b68a5 (diff)
downloadsciteco-1f8d558597098f78aeba4ed5f70824f98dc60060.tar.gz
removed most exception specifications: allow bad_allocs to propagate
* specifications resulted in runtime errors (unexpected exception) when bad_alloc ocurred * specs should be used scarcely: only when the errors that may be thrown are all known and for documentary purposes
Diffstat (limited to 'src/cmdline.cpp')
-rw-r--r--src/cmdline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmdline.cpp b/src/cmdline.cpp
index 641b062..32f0481 100644
--- a/src/cmdline.cpp
+++ b/src/cmdline.cpp
@@ -481,7 +481,7 @@ symbol_complete(SymbolList &list, const gchar *symbol, gchar completed)
* Q-Register <q>.
*/
State *
-StateSaveCmdline::got_register(QRegister &reg) throw (Error)
+StateSaveCmdline::got_register(QRegister &reg)
{
BEGIN_EXEC(&States::start);