// file : libbutl/openssl.ixx -*- C++ -*- // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file LIBBUTL_MODEXPORT namespace butl //@@ MOD Clang needs this for some reason. { template inline openssl:: openssl (I&& in, O&& out, E&& err, const process_env& env, const std::string& command, A&&... options) : openssl ([] (const char* [], std::size_t) {}, std::forward (in), std::forward (out), std::forward (err), env, command, std::forward (options)...) { } }