File tree Expand file tree Collapse file tree 5 files changed +11
-30
lines changed Expand file tree Collapse file tree 5 files changed +11
-30
lines changed Original file line number Diff line number Diff line change 26
26
#include < boost/asio/use_awaitable.hpp>
27
27
#endif
28
28
29
- #if BOOST_WORKAROUND(BOOST_GCC, < 80200)
30
- #define BOOST_BEAST_SYMBOL_HIDDEN __attribute__ ((visibility(" hidden" )))
31
- #else
32
- #define BOOST_BEAST_SYMBOL_HIDDEN
33
- #endif
34
-
35
29
namespace boost {
36
30
namespace beast {
37
31
38
- class BOOST_BEAST_SYMBOL_HIDDEN buffered_read_stream_test
32
+ class buffered_read_stream_test
39
33
: public unit_test::suite
40
34
, public test::enable_yield_to
41
35
{
Original file line number Diff line number Diff line change 37
37
#include < boost/asio/use_awaitable.hpp>
38
38
#endif
39
39
40
- #if BOOST_WORKAROUND(BOOST_GCC, < 80200)
41
- #define BOOST_BEAST_SYMBOL_HIDDEN __attribute__ ((visibility(" hidden" )))
42
- #else
43
- #define BOOST_BEAST_SYMBOL_HIDDEN
44
- #endif
45
-
46
40
namespace boost {
47
41
namespace beast {
48
42
namespace http {
49
43
50
- class BOOST_BEAST_SYMBOL_HIDDEN read_test
44
+ class read_test
51
45
: public beast::unit_test::suite
52
46
, public test::enable_yield_to
53
47
{
Original file line number Diff line number Diff line change 36
36
#include < boost/asio/use_awaitable.hpp>
37
37
#endif
38
38
39
- #if BOOST_WORKAROUND(BOOST_GCC, < 80200)
40
- #define BOOST_BEAST_SYMBOL_HIDDEN __attribute__ ((visibility(" hidden" )))
41
- #else
42
- #define BOOST_BEAST_SYMBOL_HIDDEN
43
- #endif
44
-
45
39
namespace boost {
46
40
namespace beast {
47
41
namespace http {
48
42
49
- class BOOST_BEAST_SYMBOL_HIDDEN write_test
43
+ class write_test
50
44
: public beast::unit_test::suite
51
45
, public test::enable_yield_to
52
46
{
Original file line number Diff line number Diff line change 18
18
#include < boost/asio/use_awaitable.hpp>
19
19
#endif
20
20
21
- #include < boost/config/workaround.hpp>
22
- #if BOOST_WORKAROUND(BOOST_GCC, < 80200)
23
- #define BOOST_BEAST_SYMBOL_HIDDEN __attribute__ ((visibility(" hidden" )))
24
- #else
25
- #define BOOST_BEAST_SYMBOL_HIDDEN
26
- #endif
27
-
28
21
namespace boost {
29
22
namespace beast {
30
23
namespace websocket {
31
24
32
- class BOOST_BEAST_SYMBOL_HIDDEN read2_test
25
+ class read2_test
33
26
: public websocket_test_suite
34
27
{
35
28
public:
Original file line number Diff line number Diff line change 19
19
#include < thread>
20
20
#include < vector>
21
21
22
+ #if BOOST_WORKAROUND(BOOST_GCC, < 80200)
23
+ #define BOOST_BEAST_SYMBOL_HIDDEN __attribute__ ((visibility(" hidden" )))
24
+ #else
25
+ #define BOOST_BEAST_SYMBOL_HIDDEN
26
+ #endif
27
+
22
28
namespace boost {
23
29
namespace beast {
24
30
namespace test {
@@ -29,7 +35,7 @@ namespace test {
29
35
functions inside coroutines. This is handy for testing
30
36
asynchronous asio code.
31
37
*/
32
- class enable_yield_to
38
+ class BOOST_BEAST_SYMBOL_HIDDEN enable_yield_to
33
39
{
34
40
protected:
35
41
net::io_context ioc_;
You can’t perform that action at this time.
0 commit comments