Files
simdjson-simdjson/include/simdjson/parsedjson.h
T
2020-03-29 17:01:12 -07:00

17 lines
283 B
C++

// TODO Remove this -- deprecated API and files
#ifndef SIMDJSON_PARSEDJSON_H
#define SIMDJSON_PARSEDJSON_H
#include "simdjson/document.h"
namespace simdjson {
/**
* @deprecated Use `document::parser` instead.
*/
using ParsedJson = dom::parser;
} // namespace simdjson
#endif