diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-08-28 21:48:30 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-08-28 21:48:30 +0100 |
| commit | f30ff718cbe924c8fcb6bf3a6a485271da85855d (patch) | |
| tree | 905f0b3baabb9dcbedc6706167bef3bfefd9242e /src | |
| parent | 6b0b06915c254637350dc14646ebc7d641ba1e60 (diff) | |
Missing initialisattion of DCPReadError::_message.
Diffstat (limited to 'src')
| -rw-r--r-- | src/exceptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h index 2871ee86..8bc6e550 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -99,6 +99,7 @@ class DCPReadError : public std::runtime_error public: explicit DCPReadError (std::string message) : std::runtime_error(message) + , _message(message) {} DCPReadError (std::string message, std::string detail); |
