* Use rapidyaml library to parse YAML databases instead of yaml-cpp. * Drastically reduces the parse time for yaml databases. * Removes yaml-cpp content from main servers, except for tool emitter. Co-authored-by: Vincent Stumpf <vincents.995@gmail.com> Co-authored-by: Atemo <capucrath@gmail.com> Co-authored-by: Lemongrass3110 <lemongrass@kstp.at> Co-authored-by: Aleos <aleos89@users.noreply.github.com>
12 lines
155 B
C++
12 lines
155 B
C++
#ifndef _RYML_HPP_
|
|
#define _RYML_HPP_
|
|
|
|
#include "c4/yml/yml.hpp"
|
|
|
|
namespace ryml {
|
|
using namespace c4::yml;
|
|
using namespace c4;
|
|
}
|
|
|
|
#endif /* _RYML_HPP_ */
|