]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/log/test/test_cmake/log_setup_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / log / test / test_cmake / log_setup_test.cpp
1 // Copyright (c) 2021 Andrey Semashev
2 //
3 // Distributed under the Boost Software License, Version 1.0.
4 // See accompanying file LICENSE_1_0.txt or copy at
5 // https://www.boost.org/LICENSE_1_0.txt)
6
7 #include <boost/log/utility/setup.hpp>
8 #include <sstream>
9
10 int main()
11 {
12 #if !defined(BOOST_LOG_WITHOUT_SETTINGS_PARSERS)
13 std::istringstream strm;
14 boost::log::init_from_stream(strm);
15 #endif
16 }