Skip to content

Commit e51d790

Browse files
committed
Fix prefix on extern "C" function name.
1 parent f1f4ea7 commit e51d790

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

asio/boostify.pl

+4
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@ sub copy_source_file
121121
{
122122
$line =~ s/asio_detail_posix_thread_function/boost_asio_detail_posix_thread_function/g;
123123
}
124+
if ($line =~ /asio_signal_handler/)
125+
{
126+
$line =~ s/asio_signal_handler/boost_asio_signal_handler/g;
127+
}
124128
if ($line =~ /ASIO_/ && !($line =~ /BOOST_ASIO_/))
125129
{
126130
$line =~ s/ASIO_/BOOST_ASIO_/g;

0 commit comments

Comments
 (0)