| 87 | |
| 88 | template <class TWriter, typename T> |
| 89 | bool to_json(TWriter& writer, const T& value, bool scope = true) |
| 90 | { |
| 91 | return ValueWriter<TWriter, T>::to_json(writer, value, scope); |
| 92 | } |
| 93 | |
| 94 | template <class TWriter> |
| 95 | struct ValueWriter<TWriter, bool> |