More work on moving engine into dlmalloc heap
This commit is contained in:
@@ -19,10 +19,8 @@
|
||||
#ifndef PPRINT_HPP
|
||||
#define PPRINT_HPP
|
||||
|
||||
#include "wrap-ostream.hpp"
|
||||
|
||||
#include "luastack.hpp"
|
||||
|
||||
#include <ostream>
|
||||
|
||||
// Atomic print to a stream.
|
||||
//
|
||||
@@ -30,10 +28,10 @@
|
||||
// it just prints "<table>". This routine is the heart of the lua
|
||||
// primitives 'print' and 'tostring'.
|
||||
//
|
||||
void atomic_print(LuaStack &LS, LuaSlot val, bool quote, eng::ostream *os);
|
||||
void atomic_print(LuaStack &LS, LuaSlot val, bool quote, std::ostream *os);
|
||||
|
||||
// Pretty print to a stream.
|
||||
//
|
||||
void pprint(LuaStack &LS, LuaSlot val, bool indent, eng::ostream *os);
|
||||
void pprint(LuaStack &LS, LuaSlot val, bool indent, std::ostream *os);
|
||||
|
||||
#endif // PPRINT_HPP
|
||||
Reference in New Issue
Block a user