summaryrefslogtreecommitdiff
path: root/ace/OS_NS_sys_select.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_sys_select.inl')
-rw-r--r--ace/OS_NS_sys_select.inl6
1 files changed, 1 insertions, 5 deletions
diff --git a/ace/OS_NS_sys_select.inl b/ace/OS_NS_sys_select.inl
index 11d1fba8cae..a46dc4bc800 100644
--- a/ace/OS_NS_sys_select.inl
+++ b/ace/OS_NS_sys_select.inl
@@ -1,13 +1,10 @@
// -*- C++ -*-
-//
// $Id$
#include "ace/OS_NS_errno.h"
#include "ace/OS_NS_macros.h"
#include "ace/Time_Value.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
// It would be really cool to add another version of select that would
// function like the one we're defending against below!
ACE_INLINE int
@@ -19,7 +16,7 @@ ACE_OS::select (int width,
#if defined (ACE_HAS_NONCONST_SELECT_TIMEVAL)
// We must defend against non-conformity!
timeval copy;
- timeval *timep = 0;
+ timeval *timep;
if (timeout != 0)
{
@@ -79,4 +76,3 @@ ACE_OS::select (int width,
#undef ___ACE_TIMEOUT
}
-ACE_END_VERSIONED_NAMESPACE_DECL