summaryrefslogtreecommitdiff
path: root/ace/FIFO_Send.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO_Send.inl')
-rw-r--r--ace/FIFO_Send.inl9
1 files changed, 6 insertions, 3 deletions
diff --git a/ace/FIFO_Send.inl b/ace/FIFO_Send.inl
index eb503d9b831..12491058e2c 100644
--- a/ace/FIFO_Send.inl
+++ b/ace/FIFO_Send.inl
@@ -1,11 +1,12 @@
-/* -*- C++ -*- */
+// -*- C++ -*-
+//
// $Id$
-// FIFO_Send.i
-
#include "ace/ACE.h"
#include "ace/OS_NS_unistd.h"
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
ACE_INLINE ssize_t
ACE_FIFO_Send::send (const void *buf, size_t len)
{
@@ -19,3 +20,5 @@ ACE_FIFO_Send::send_n (const void *buf, size_t n)
ACE_TRACE ("ACE_FIFO_Send::send_n");
return ACE::send_n (this->get_handle (), buf, n);
}
+
+ACE_END_VERSIONED_NAMESPACE_DECL