summaryrefslogtreecommitdiff
path: root/ace/FIFO.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/FIFO.inl')
-rw-r--r--ace/FIFO.inl11
1 files changed, 7 insertions, 4 deletions
diff --git a/ace/FIFO.inl b/ace/FIFO.inl
index 0c91ceaca3f..149ed11318b 100644
--- a/ace/FIFO.inl
+++ b/ace/FIFO.inl
@@ -1,10 +1,11 @@
-/* -*- C++ -*- */
+// -*- C++ -*-
+//
// $Id$
-// FIFO.i
-
#include "ace/OS_NS_unistd.h"
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
ACE_INLINE int
ACE_FIFO::get_local_addr (const ACE_TCHAR *&r) const
{
@@ -17,6 +18,8 @@ ACE_INLINE int
ACE_FIFO::remove (void)
{
ACE_TRACE ("ACE_FIFO::remove");
- int result = this->close ();
+ int const result = this->close ();
return ACE_OS::unlink (this->rendezvous_) == -1 || result == -1 ? -1 : 0;
}
+
+ACE_END_VERSIONED_NAMESPACE_DECL