| 2226 | */ |
| 2227 | template <typename... Args> |
| 2228 | OutBuffer check_output(std::initializer_list<const char*> plist, Args&&... args) |
| 2229 | { |
| 2230 | return (detail::check_output_impl(plist, std::forward<Args>(args)...)); |
| 2231 | } |
| 2232 | |
| 2233 | template <typename... Args> |
| 2234 | OutBuffer check_output(const std::string& arg, Args&&... args) |