Add explicit Exception default constructor

This commit is contained in:
Dmitry Marakasov 2015-09-17 15:31:26 +03:00
parent 595da1e61e
commit 8be33f4fb4

View File

@ -81,6 +81,12 @@ public:
////////////////////////////////////////////////////////////
Exception(const char* function);
////////////////////////////////////////////////////////////
/// \brief Copy constructor
///
////////////////////////////////////////////////////////////
Exception(const Exception&) = default;
////////////////////////////////////////////////////////////
/// \brief Destructor
///