Fixing a bug with the write in 0x0

This commit is contained in:
AnonymusRaccoon
2020-02-13 11:09:18 +01:00
parent b1a2222b55
commit a6c3e54f9f
11 changed files with 96 additions and 9 deletions
@@ -10,7 +10,7 @@
namespace ComSquare
{
//! @brief When this is thrown, it means that we should work more.
class NotImplementedException : std::exception {
class NotImplementedException : public std::exception {
public:
explicit NotImplementedException() = default;
const char *what() const noexcept override { return "Not implemented yet."; }