| 1723 | } |
| 1724 | |
| 1725 | std::size_t |
| 1726 | write( |
| 1727 | SV s, |
| 1728 | std::error_code& ec) |
| 1729 | { |
| 1730 | auto const n = p_.write_some( |
| 1731 | false, s.data(), s.size(), ec); |
| 1732 | if(! ec && n < s.size()) |
| 1733 | ec = error::extra_data; |
| 1734 | return n; |
| 1735 | } |
| 1736 | }; |
| 1737 | |
| 1738 | void testStdTypes() |
nothing calls this directly
no test coverage detected