mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
15 lines
263 B
C++
15 lines
263 B
C++
#ifndef SIMDJSON_BUILDER_H
|
|
#define SIMDJSON_BUILDER_H
|
|
|
|
#include "simdjson/builtin/builder.h"
|
|
|
|
namespace simdjson {
|
|
/**
|
|
* @copydoc simdjson::builtin::builder
|
|
*/
|
|
namespace builder = builtin::builder;
|
|
|
|
} // namespace simdjson
|
|
|
|
#endif // SIMDJSON_BUILDER_H
|