feat(reflect-cpp): Switched from glaze -> reflect cpp
A bug was discovered in glaze which prevented valid toml output. We have switched to toml++ and reflect-cpp. The interface has remained the same so this should not break any code
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#ifndef RFL_PARSING_TABULAR_MAKE_ARROW_SCHEMA_HPP_
|
||||
#define RFL_PARSING_TABULAR_MAKE_ARROW_SCHEMA_HPP_
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
#include "../../named_tuple_t.hpp"
|
||||
#include "make_arrow_builders.hpp"
|
||||
|
||||
namespace rfl::parsing::tabular {
|
||||
|
||||
template <class T, SerializationType _s>
|
||||
inline auto make_arrow_schema() {
|
||||
return ArrowBuildersType<named_tuple_t<std::remove_cvref_t<T>>, _s>::schema();
|
||||
}
|
||||
|
||||
} // namespace rfl::parsing::tabular
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user