Skip to content

Commit 2b5de80

Browse files
author
Pavol Droba
committed
Library adapted to use official version Boost.Range instead of the internal one.
Internal version removed [SVN r26788]
1 parent aea6f39 commit 2b5de80

6 files changed

Lines changed: 28 additions & 169 deletions

File tree

string/doc/Jamfile.v2

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,27 @@ doxygen autodoc
1717
[ glob ../../../../boost/algorithm/string.hpp ]
1818
[ glob ../../../../boost/algorithm/string_regex.hpp ]
1919

20-
[ glob ../../../../boost/algorithm/string/classification.hpp ]
21-
[ glob ../../../../boost/algorithm/string/iterator_range.hpp ]
22-
[ glob ../../../../boost/algorithm/string/sequence_traits.hpp ]
23-
[ glob ../../../../boost/algorithm/string/std_containers_traits.hpp ]
24-
[ glob ../../../../boost/algorithm/string/collection_traits.hpp ]
25-
[ glob ../../../../boost/algorithm/string/concept.hpp ]
26-
[ glob ../../../../boost/algorithm/string/compare.hpp ]
27-
[ glob ../../../../boost/algorithm/string/constants.hpp ]
28-
[ glob ../../../../boost/algorithm/string/case_conv.hpp ]
29-
[ glob ../../../../boost/algorithm/string/find.hpp ]
30-
[ glob ../../../../boost/algorithm/string/finder.hpp ]
31-
[ glob ../../../../boost/algorithm/string/find_iterator.hpp ]
32-
[ glob ../../../../boost/algorithm/string/trim.hpp ]
33-
[ glob ../../../../boost/algorithm/string/predicate.hpp ]
34-
[ glob ../../../../boost/algorithm/string/split.hpp ]
35-
[ glob ../../../../boost/algorithm/string/erase.hpp ]
36-
[ glob ../../../../boost/algorithm/string/replace.hpp ]
37-
[ glob ../../../../boost/algorithm/string/find_format.hpp ]
38-
[ glob ../../../../boost/algorithm/string/formatter.hpp ]
39-
[ glob ../../../../boost/algorithm/string/regex.hpp ]
40-
[ glob ../../../../boost/algorithm/string/regex_find_format.hpp ]
20+
# [ glob ../../../../boost/algorithm/string/classification.hpp ]
21+
# [ glob ../../../../boost/algorithm/string/iterator_range.hpp ]
22+
# [ glob ../../../../boost/algorithm/string/sequence_traits.hpp ]
23+
# [ glob ../../../../boost/algorithm/string/std_containers_traits.hpp ]
24+
# [ glob ../../../../boost/algorithm/string/collection_traits.hpp ]
25+
# [ glob ../../../../boost/algorithm/string/concept.hpp ]
26+
# [ glob ../../../../boost/algorithm/string/compare.hpp ]
27+
# [ glob ../../../../boost/algorithm/string/constants.hpp ]
28+
# [ glob ../../../../boost/algorithm/string/case_conv.hpp ]
29+
# [ glob ../../../../boost/algorithm/string/find.hpp ]
30+
# [ glob ../../../../boost/algorithm/string/finder.hpp ]
31+
# [ glob ../../../../boost/algorithm/string/find_iterator.hpp ]
32+
# [ glob ../../../../boost/algorithm/string/trim.hpp ]
33+
# [ glob ../../../../boost/algorithm/string/predicate.hpp ]
34+
# [ glob ../../../../boost/algorithm/string/split.hpp ]
35+
# [ glob ../../../../boost/algorithm/string/erase.hpp ]
36+
# [ glob ../../../../boost/algorithm/string/replace.hpp ]
37+
# [ glob ../../../../boost/algorithm/string/find_format.hpp ]
38+
# [ glob ../../../../boost/algorithm/string/formatter.hpp ]
39+
# [ glob ../../../../boost/algorithm/string/regex.hpp ]
40+
# [ glob ../../../../boost/algorithm/string/regex_find_format.hpp ]
4141
:
4242
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
4343
<doxygen:param>EXTRACT_PRIVATE=NO

string/example/replace_example.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
#include <string>
1111
#include <iostream>
1212
#include <iterator>
13-
#include <boost/algorithm/string/replace.hpp>
14-
#include <boost/algorithm/string/erase.hpp>
15-
#include <boost/algorithm/string/case_conv.hpp>
13+
//#include <boost/algorithm/string/replace.hpp>
14+
//#include <boost/algorithm/string/erase.hpp>
15+
//#include <boost/algorithm/string/case_conv.hpp>
16+
#include <boost/algorithm/string.hpp>
1617

1718
//Following two includes contain second-layer function.
1819
//They are already included by first-layer header

string/example/split_example.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include <iostream>
1313
#include <iterator>
1414
#include <functional>
15-
#include <boost/algorithm/string/iterator_range.hpp>
1615
#include <boost/algorithm/string/classification.hpp>
1716
#include <boost/algorithm/string/split.hpp>
1817
#include <boost/algorithm/string/find_iterator.hpp>
@@ -36,7 +35,7 @@ int main()
3635
It!=string_find_iterator();
3736
++It)
3837
{
39-
cout << copy_iterator_range<std::string>(*It) << endl;
38+
cout << copy_range<std::string>(*It) << endl;
4039
// shift all chars in the match by one
4140
transform(
4241
It->begin(), It->end(),

string/test/Jamfile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,7 @@ DEPENDS all : test ;
1717

1818
{
1919
test-suite algorithm/string
20-
: [ run
21-
container_test.cpp
22-
: :
23-
:
24-
std::locale-support
25-
std::facet-support
26-
: container
27-
]
28-
[ run
20+
: [ run
2921
trim_test.cpp
3022
: :
3123
:

string/test/Jamfile.v2

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,7 @@
1010
import testing ;
1111

1212
test-suite algorithm/string
13-
: [ run
14-
container_test.cpp
15-
: :
16-
:
17-
: container
18-
]
19-
[ run
13+
: [ run
2014
trim_test.cpp
2115
: :
2216
:

string/test/container_test.cpp

Lines changed: 0 additions & 127 deletions
This file was deleted.

0 commit comments

Comments
 (0)