Fix -Wextra warning.

This commit is contained in:
chris_kohlhoff 2006-11-14 10:13:02 +00:00
parent 43d5ca9853
commit 172c62cb31

View File

@ -51,7 +51,8 @@ public:
/// Copy constructor.
system_error(const system_error& other)
: code_(other.code_),
: std::exception(other),
code_(other.code_),
context_(other.context_),
what_()
{