toml11/toml/from.hpp
ToruNiina c38079f7c0 fix: remove needless include file
that might cause compilation error
2021-05-25 21:40:41 +09:00

20 lines
330 B
C++

// Copyright Toru Niina 2019.
// Distributed under the MIT License.
#ifndef TOML11_FROM_HPP
#define TOML11_FROM_HPP
namespace toml
{
template<typename T>
struct from;
// {
// static T from_toml(const toml::value& v)
// {
// // User-defined conversions ...
// }
// };
} // toml
#endif // TOML11_FROM_HPP