Yet more work on eng::malloc

This commit is contained in:
2022-03-02 14:52:51 -05:00
parent 7cd8eb0a43
commit cf102a6250
25 changed files with 114 additions and 59 deletions

View File

@@ -222,7 +222,7 @@
#include "luastack.hpp"
#include "util.hpp"
class StreamException
class StreamException : public eng::nevernew
{
public:
virtual char const *what() const { return "General stream exception"; }
@@ -240,7 +240,7 @@ public:
virtual char const *what() const { return "Stream contained invalid data"; }
};
class StreamBuffer {
class StreamBuffer : public eng::nevernew {
public:
// Construct an empty buffer.
StreamBuffer();