Migrated engine to using dlmalloc through eng::

This commit is contained in:
2022-02-24 02:17:41 -05:00
parent acc00289fb
commit f467944095
61 changed files with 631 additions and 590 deletions

View File

@@ -150,7 +150,7 @@ public:
// containing one error per line, and returned. If the return value
// is the empty string, there were no errors.
//
std::string rebuild();
eng::string rebuild();
// Difference transmission.
//
@@ -173,14 +173,14 @@ public:
// These functions are direct getters/setters for values in the source
// database. They are intended only for unit testing.
//
void set(const std::string &fn, const std::string &code, int sequence);
std::string get(const std::string &fn);
void set(const eng::string &fn, const eng::string &code, int sequence);
eng::string get(const eng::string &fn);
// Add builtins to the global function registry.
static void register_lua_builtins();
// Get function documentation.
static std::string function_docs(const LuaStack &LS, LuaSlot slot);
static eng::string function_docs(const LuaStack &LS, LuaSlot slot);
// Serialize and unserialize a source vector.
//