diff options
Diffstat (limited to 'cpp/lib/common/sys/posix/check.h')
-rw-r--r-- | cpp/lib/common/sys/posix/check.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/lib/common/sys/posix/check.h b/cpp/lib/common/sys/posix/check.h index 5afbe8f5a8..57b5a5757c 100644 --- a/cpp/lib/common/sys/posix/check.h +++ b/cpp/lib/common/sys/posix/check.h @@ -45,7 +45,7 @@ class PosixError : public qpid::QpidError Exception* clone() const throw() { return new PosixError(*this); } - void throwSelf() { throw *this; } + void throwSelf() const { throw *this; } private: int errNo; |