diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-10 01:16:40 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-10 01:16:40 +0000 |
commit | 23a57e6b9ef7dab940a64c7e648e5f4f714f19d2 (patch) | |
tree | 556d53e2d3d5fc9c7f66136accf514ddfb1303df /examples | |
parent | 83433c4f35b578ae30c6f5c563a50b41823d02b5 (diff) | |
download | ATCD-23a57e6b9ef7dab940a64c7e648e5f4f714f19d2.tar.gz |
fixed typo in template specializations: ACE_LSOCK_ACCEPTOR instead of ACE_SOCK_LACCEPTOR
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Connection/non_blocking/test_lsock_acceptor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Connection/non_blocking/test_lsock_acceptor.cpp b/examples/Connection/non_blocking/test_lsock_acceptor.cpp index 958cc0e5da7..7b501ad42dd 100644 --- a/examples/Connection/non_blocking/test_lsock_acceptor.cpp +++ b/examples/Connection/non_blocking/test_lsock_acceptor.cpp @@ -28,6 +28,6 @@ main (int argc, char *argv[]) template class ACE_Concurrency_Strategy<SVC_HANDLER>; template class ACE_Oneshot_Acceptor<SVC_HANDLER, ACE_LSOCK_ACCEPTOR>; template class ACE_Svc_Handler<ACE_LSOCK_STREAM, ACE_NULL_SYNCH>; -template class IPC_Server<SVC_HANDLER, ACE_SOCK_LACCEPTOR>; +template class IPC_Server<SVC_HANDLER, ACE_LSOCK_ACCEPTOR>; template class Svc_Handler<ACE_LSOCK_STREAM>; #endif /* ACE_TEMPLATES_REQUIRE_SPECIALIZATION */ |