# HG changeset patch # User Florian Pose # Date 1415196414 -3600 # Node ID 0e207abed88aa442b62ef7a1d094984dfb6f03cd # Parent 2b9c78543663587e8ae2e9f2a7c7a3568555839b Made some throw methods static. diff -r 2b9c78543663 -r 0e207abed88a tool/Command.cpp --- a/tool/Command.cpp Mon Nov 03 15:20:05 2014 +0100 +++ b/tool/Command.cpp Wed Nov 05 15:06:54 2014 +0100 @@ -270,21 +270,21 @@ /*****************************************************************************/ -void Command::throwInvalidUsageException(const stringstream &s) const +void Command::throwInvalidUsageException(const stringstream &s) { throw InvalidUsageException(s); } /*****************************************************************************/ -void Command::throwCommandException(const string &msg) const +void Command::throwCommandException(const string &msg) { throw CommandException(msg); } /*****************************************************************************/ -void Command::throwCommandException(const stringstream &s) const +void Command::throwCommandException(const stringstream &s) { throw CommandException(s); } diff -r 2b9c78543663 -r 0e207abed88a tool/Command.h --- a/tool/Command.h Mon Nov 03 15:20:05 2014 +0100 +++ b/tool/Command.h Wed Nov 05 15:06:54 2014 +0100 @@ -132,9 +132,9 @@ protected: enum {BreakAfterBytes = 16}; - void throwInvalidUsageException(const stringstream &) const; - void throwCommandException(const string &) const; - void throwCommandException(const stringstream &) const; + static void throwInvalidUsageException(const stringstream &); + static void throwCommandException(const string &); + static void throwCommandException(const stringstream &); void throwSingleSlaveRequired(unsigned int) const; typedef list SlaveList;