eddelbuettel / rcppsimdjson

Rcpp Bindings for the 'simdjson' Header Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug in validate benchmark?

anthonynorth opened this issue · comments

There looks to be a bug in the validate json benchmark. {yyjsonr} is reading a file into memory instead of validating it.

yyjsonr = yyjsonr::read_json_file(file),

I think this should be:

yyjsonr = yyjsonr::validate_json_file(file),

My bad, I will fix that.

Now done, thanks for catching that.