Update to new rexylb

This commit is contained in:
rexy712 2022-06-19 13:37:21 -07:00
parent 69fca74d3c
commit a017b589cb
2 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,8 @@
namespace rjp{
using namespace rexy::str_literals;
string_val::string_val(const rexy::string_view& str):
value(rjp_new_string(str.get(), str.length()), true){}
string_val::string_val(string&& str):

View File

@ -3,6 +3,8 @@
#include <stdio.h>
#include <string.h>
using namespace rexy::str_literals;
typedef struct{
rjp::value (*create)(void);
const char* res;