silverqx / TinyORM

Modern C++ ORM library
https://www.tinyorm.org
MIT License
210 stars 22 forks source link

bugfix tabulate type #9

Closed nurettin closed 1 year ago

nurettin commented 1 year ago

ref #8

silverqx commented 1 year ago

The tabulate 1.4 branch is still using the std::variant<std::string, const char *, Table>!

The std::variant<std::string, const char *, string_view, Table> is used in the master branch which is not released yet, please checkout the 1.4 branch, also vcpkg uses 1.4 version.

The master branch is also exporting it here, so from the 1.5 version we can depend on this tabulte::Table::Row_t alias, god bless this alias. 😁

silverqx commented 1 year ago

I have solved it this way ecc3ceb8.

nurettin commented 1 year ago

I have solved it this way ecc3ceb8.

thanks for looking into this