Remove unnecessary inline

This commit is contained in:
Victor Zverovich 2022-02-18 07:41:55 -08:00
parent 05432e570e
commit b6d56170fc

View File

@ -392,9 +392,7 @@ template <typename T> inline auto convert_for_visit(T value) -> T {
enum class int128_opt {}; enum class int128_opt {};
enum class uint128_opt {}; enum class uint128_opt {};
// Reduce template instantiations. // Reduce template instantiations.
template <typename T> inline auto convert_for_visit(T) -> monostate { template <typename T> auto convert_for_visit(T) -> monostate { return {}; }
return {};
}
#endif #endif
// Casts a nonnegative integer to unsigned. // Casts a nonnegative integer to unsigned.