Commit 833f03472289a61552a2c8fdc3eedabf304faa05
Fix build with Boost 1.72 or newer
This version extracted part of <boost/filesystem/operations.hpp> as
<boost/filesystem/directory.hpp>.
Author: xaizek
Author date (UTC): 2024-08-08 13:36
Committer name: xaizek
Committer date (UTC): 2024-08-08 13:41
Parent(s): 15c770211cd6caa3692a8efca52d8b4b3ca76304
Signing key: 99DC5E4DB05F6BE2
Tree: 0a5a043714b11343eca41437847f04d0a6140678
File src/GcovImporter.cpp changed (mode: 100644) (index 0fae288..e06f9de) |
23 |
23 |
#include <boost/iostreams/filtering_streambuf.hpp> |
#include <boost/iostreams/filtering_streambuf.hpp> |
24 |
24 |
#include <boost/property_tree/ptree.hpp> |
#include <boost/property_tree/ptree.hpp> |
25 |
25 |
#include <boost/property_tree/json_parser.hpp> |
#include <boost/property_tree/json_parser.hpp> |
|
26 |
|
#include <boost/version.hpp> |
|
27 |
|
#if BOOST_VERSION >= 107200 |
|
28 |
|
# include <boost/filesystem/directory.hpp> |
|
29 |
|
#endif |
26 |
30 |
|
|
27 |
31 |
#include <cassert> |
#include <cassert> |
28 |
32 |
|
|
File tests/TestUtils.cpp changed (mode: 100644) (index 4bd7e88..871c155) |
20 |
20 |
#include <boost/iostreams/filter/gzip.hpp> |
#include <boost/iostreams/filter/gzip.hpp> |
21 |
21 |
#include <boost/iostreams/filtering_streambuf.hpp> |
#include <boost/iostreams/filtering_streambuf.hpp> |
22 |
22 |
#include <boost/range.hpp> |
#include <boost/range.hpp> |
|
23 |
|
#if BOOST_VERSION >= 107200 |
|
24 |
|
# include <boost/filesystem/directory.hpp> |
|
25 |
|
#endif |
23 |
26 |
|
|
24 |
27 |
#include <algorithm> |
#include <algorithm> |
25 |
28 |
#include <fstream> |
#include <fstream> |