This commit is contained in:
2025-07-11 14:35:06 +08:00
parent bbb9bcace4
commit 2b37192fdb
67 changed files with 18070 additions and 4 deletions

17
src/toml11/into.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef TOML11_INTO_HPP
#define TOML11_INTO_HPP
namespace toml
{
template<typename T>
struct into;
// {
// static toml::value into_toml(const T& user_defined_type)
// {
// // User-defined conversions ...
// }
// };
} // toml
#endif // TOML11_INTO_HPP