Consistently use const Class &' instead of Class const &'.

committer: mfx <mfx> 1042741665 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-01-16 18:27:45 +00:00
parent 7860e7a249
commit 8f25c72085
8 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ class Throwable : public std::exception
protected:
Throwable(const char *m = 0, int e = 0, bool w = false);
public:
Throwable(Throwable const &);
Throwable(const Throwable &);
virtual ~Throwable() NOTHROW;
const char *getMsg() const { return msg; }
int getErrno() const { return err; }
@@ -58,7 +58,7 @@ protected:
private:
// disable assignment
Throwable& operator= (Throwable const &);
Throwable& operator= (const Throwable &);
// disable dynamic allocation
DISABLE_NEW_DELETE