| 53 | |
| 54 | template<class T, bool StackEmpty> |
| 55 | BOOST_FORCEINLINE |
| 56 | bool |
| 57 | write_impl(null_like_conversion_tag, writer& w, stream& ss) |
| 58 | { |
| 59 | #if defined(_MSC_VER) |
| 60 | # pragma warning( push ) |
| 61 | # pragma warning( disable : 4127 ) |
| 62 | #endif |
| 63 | if( StackEmpty || w.st_.empty() ) |
| 64 | return write_null(w, ss); |
| 65 | #if defined(_MSC_VER) |
| 66 | # pragma warning( pop ) |
| 67 | #endif |
| 68 | return resume_buffer(w, ss); |
| 69 | } |
| 70 | |
| 71 | template<class T, bool StackEmpty> |
| 72 | BOOST_FORCEINLINE |