Skip to content

Commit 00d0124

Browse files
committed
Add missing export statements
1 parent 0bb8475 commit 00d0124

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

asio/.clang-tidy

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Checks: "*,\
1515
-*-magic-numbers,\
1616
-performance-avoid-endl,
1717
-misc-include-cleaner,\
18-
-misc-header-include-cycle,\
18+
misc-header-include-cycle,\
1919
-misc-non-private-member-variables-in-classes"
2020
WarningsAsErrors: ''
2121
CheckOptions:

asio/module/asio.cppm

+3
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ export using asio::ssl::verify_context;
6565
export using asio::ssl::stream;
6666
namespace error
6767
{
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;
6871
export using asio::ssl::error::stream_errors;
6972
export using asio::ssl::error::make_error_code;
7073
} // namespace error

asio/module/tests/main.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
#include "main.hpp"
22

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+
}

0 commit comments

Comments
 (0)