]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/process/detail/posix/exe.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / process / detail / posix / exe.hpp
CommitLineData
b32b8144
FG
1// Copyright (c) 2016 Klemens D. Morgenstern
2//
3// Distributed under the Boost Software License, Version 1.0. (See accompanying
4// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6
7#ifndef BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
8#define BOOST_PROCESS_DETAIL_POSIX_EXE_HPP_
9
10
11namespace boost
12{
13namespace process
14{
15namespace detail
16{
17namespace posix
18{
19
20template<class StringType, class Executor>
21inline void apply_exe(const StringType & exe, Executor & e)
22{
23 e.exe = exe.c_str();
24}
25
26}
27
28
29
30}
31}
32}
33
34
35
36#endif /* INCLUDE_BOOST_PROCESS_WINDOWS_ARGS_HPP_ */