Skip to content

Commit 2e37599

Browse files
committed
remove all.hpp because of name clashes (forced_unwind)
1 parent d08d608 commit 2e37599

File tree

16 files changed

+14
-37
lines changed

16 files changed

+14
-37
lines changed

doc/overview.qbk

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ thousand CPU cycles on x86 CPUs. By contrast, transferring control vias
3030
__cc__/__con__ requires only few CPU cycles because it does not involve system
3131
calls as it is done within a single thread.
3232

33-
In order to use the classes and functions described here, you can either include
34-
the specific headers specified by the descriptions of each class or function, or
35-
include the master library header:
36-
37-
#include <boost/context/all.hpp>
38-
39-
which includes all the other headers in turn.
40-
4133
All functions and classes are contained in the namespace __context_ns__.
4234

4335
[note This library requires C++11!]

example/callcc/segmented.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <iostream>
99
#include <memory>
1010

11-
#include <boost/context/all.hpp>
11+
#include <boost/context/continuation.hpp>
1212

1313
namespace ctx = boost::context;
1414

example/execution_context_v2/backtrace.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#include <libunwind.h>
1313

14-
#include <boost/context/all.hpp>
14+
#include <boost/context/execution_context.hpp>
1515

1616
namespace ctx = boost::context;
1717

example/execution_context_v2/echosse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <iostream>
1111
#include <emmintrin.h>
1212

13-
#include <boost/context/all.hpp>
13+
#include <boost/context/execution_context.hpp>
1414

1515
namespace ctx = boost::context;
1616

example/execution_context_v2/fibonacci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <iostream>
99
#include <memory>
1010

11-
#include <boost/context/all.hpp>
11+
#include <boost/context/execution_context.hpp>
1212

1313
namespace ctx = boost::context;
1414

example/execution_context_v2/jump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <cstdlib>
88
#include <iostream>
99

10-
#include <boost/context/all.hpp>
10+
#include <boost/context/execution_context.hpp>
1111

1212
namespace ctx = boost::context;
1313

example/execution_context_v2/jump_void.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <cstdlib>
88
#include <iostream>
99

10-
#include <boost/context/all.hpp>
10+
#include <boost/context/execution_context.hpp>
1111

1212
namespace ctx = boost::context;
1313

example/execution_context_v2/ontop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <iostream>
99
#include <tuple>
1010

11-
#include <boost/context/all.hpp>
11+
#include <boost/context/execution_context.hpp>
1212

1313
namespace ctx = boost::context;
1414

example/execution_context_v2/ontop_void.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <iostream>
99
#include <tuple>
1010

11-
#include <boost/context/all.hpp>
11+
#include <boost/context/execution_context.hpp>
1212

1313
namespace ctx = boost::context;
1414

example/execution_context_v2/parameter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string>
1212

1313
#include <boost/variant.hpp>
14-
#include <boost/context/all.hpp>
14+
#include <boost/context/execution_context.hpp>
1515
#include <boost/lexical_cast.hpp>
1616

1717
typedef boost::variant<int,std::string> variant_t;

0 commit comments

Comments
 (0)