Literal operator for creating const_buffer objects from string literals.
| 2867 | |
| 2868 | /// Literal operator for creating const_buffer objects from string literals. |
| 2869 | inline const_buffer operator ""_buf(const char* data, std::size_t n) |
| 2870 | { |
| 2871 | return const_buffer(data, n); |
| 2872 | } |
| 2873 | |
| 2874 | /// Literal operator for creating const_buffer objects from unbounded binary or |
| 2875 | /// hexadecimal integer literals. |
nothing calls this directly
no test coverage detected