Define the templated zlib error constructor

This commit is contained in:
Danny Robson 2013-07-30 01:42:12 +10:00
parent db2fa04765
commit 2ebd4b417e

View File

@ -65,7 +65,9 @@ namespace util {
template <int CODE>
class code_error : public error {
public:
code_error(void);
code_error(void):
error (code_to_string (CODE))
{ ; }
};
}
}