xo-printjson: bugfix: adjust for upstream changes:

xo::ref::rp -> xo::rp
xo::quoted -> xo::quot
new reflection metatype mt_function
This commit is contained in:
Roland Conybeare 2024-09-14 12:09:06 -05:00
commit cac526a517
2 changed files with 12 additions and 6 deletions

View file

@ -41,7 +41,7 @@ namespace xo {
/* convenience -- shorthand for
* .print(obj->self_tp(), p_os)
*/
void print_obj(ref::rp<SelfTagging> const & obj, std::ostream * p_os) const;
void print_obj(rp<SelfTagging> const & obj, std::ostream * p_os) const;
void provide_printer(TypeId id, std::unique_ptr<JsonPrinter> p) {
*(printer_map_.require(id)) = std::move(p);
@ -74,13 +74,13 @@ namespace xo {
*/
class PrintJsonSingleton {
public:
static ref::rp<PrintJson> instance();
static rp<PrintJson> instance();
private:
/* we don't need this to be stored as pointer.
* memory burned if unused will be one empty std::vector<>
*/
static ref::rp<PrintJson> s_instance;
static rp<PrintJson> s_instance;
}; /*PrintJsonSingleton*/
} /*namespace json*/