File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 6
6
#include < iterator>
7
7
#include < vector>
8
8
#include < algorithm>
9
+
10
+ #ifdef NETWORK_URI_EXTERNAL_BOOST
11
+ #include < boost/algorithm/string/split.hpp>
12
+ #include < boost/algorithm/string/join.hpp>
13
+ #else // NETWORK_URI_EXTERNAL_BOOST
9
14
#include " ../boost/algorithm/string/split.hpp"
10
15
#include " ../boost/algorithm/string/join.hpp"
16
+ #endif // NETWORK_URI_EXTERNAL_BOOST
17
+
11
18
#include " uri_normalize.hpp"
12
19
#include " uri_percent_encode.hpp"
13
20
#include " algorithm.hpp"
Original file line number Diff line number Diff line change 6
6
7
7
#include " uri_resolve.hpp"
8
8
#include < algorithm>
9
+
10
+ #ifdef NETWORK_URI_EXTERNAL_BOOST
11
+ #include < boost/algorithm/string/find.hpp>
12
+ #include < boost/algorithm/string/erase.hpp>
13
+ #include < boost/algorithm/string/replace.hpp>
14
+ #include < boost/algorithm/string/predicate.hpp>
15
+ #else // NETWORK_URI_EXTERNAL_BOOST
9
16
#include " ../boost/algorithm/string/find.hpp"
10
17
#include " ../boost/algorithm/string/erase.hpp"
11
18
#include " ../boost/algorithm/string/replace.hpp"
12
19
#include " ../boost/algorithm/string/predicate.hpp"
20
+ #endif // NETWORK_URI_EXTERNAL_BOOST
13
21
14
22
namespace network {
15
23
namespace detail {
You can’t perform that action at this time.
0 commit comments