File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Checks: "*,\
15
15
-*-magic-numbers,\
16
16
-performance-avoid-endl,
17
17
-misc-include-cleaner,\
18
- - misc-header-include-cycle,\
18
+ misc-header-include-cycle,\
19
19
-misc-non-private-member-variables-in-classes"
20
20
WarningsAsErrors : ' '
21
21
CheckOptions :
Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ export using asio::ssl::verify_context;
65
65
export using asio::ssl::stream;
66
66
namespace error
67
67
{
68
+ export using asio::ssl::error::stream_truncated;
69
+ export using asio::ssl::error::unspecified_system_error;
70
+ export using asio::ssl::error::unexpected_result;
68
71
export using asio::ssl::error::stream_errors;
69
72
export using asio::ssl::error::make_error_code;
70
73
} // namespace error
Original file line number Diff line number Diff line change 1
1
#include " main.hpp"
2
2
3
- int main () { return bench::main_impl (); }
3
+ // NOLINTNEXTLINE(bugprone-exception-escape)
4
+ auto main () -> int
5
+ {
6
+ return bench::main_impl (); // NOLINT(clang-analyzer-core.CallAndMessage)
7
+ }
You can’t perform that action at this time.
0 commit comments