aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/ACE.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/ACE_wrappers/ace/ACE.cpp')
-rw-r--r--dep/ACE_wrappers/ace/ACE.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/dep/ACE_wrappers/ace/ACE.cpp b/dep/ACE_wrappers/ace/ACE.cpp
index 7ccf15ed341..8897a5c0ea1 100644
--- a/dep/ACE_wrappers/ace/ACE.cpp
+++ b/dep/ACE_wrappers/ace/ACE.cpp
@@ -37,12 +37,10 @@ extern "C" int maxFiles;
# include "ace/OS_NS_poll.h"
#endif /* ACE_HAS_POLL && ACE_HAS_LIMITED_SELECT */
-
ACE_RCSID (ace,
ACE,
"$Id: ACE.cpp 82581 2008-08-11 08:58:24Z johnnyw $")
-
// Open versioned namespace, if enabled by the user.
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
@@ -62,7 +60,6 @@ namespace ACE
char debug_;
}
-
int
ACE::out_of_handles (int error)
{
@@ -2306,7 +2303,6 @@ ACE::restore_non_blocking_mode (ACE_HANDLE handle,
}
}
-
// Format buffer into printable format. This is useful for debugging.
// Portions taken from mdump by J.P. Knight (J.P.Knight@lut.ac.uk)
// Modifications by Todd Montgomery.
@@ -2704,7 +2700,7 @@ ACE::handle_timed_accept (ACE_HANDLE listener,
// We need a loop here if <restart> is enabled.
- for (;;)
+ for (; ; )
{
#if defined (ACE_HAS_POLL) && defined (ACE_HAS_LIMITED_SELECT)
@@ -2974,7 +2970,6 @@ ACE::gcd (u_long x, u_long y)
return x;
}
-
// Calculates the minimum enclosing frame size for the given values.
u_long
ACE::minimum_frame_size (u_long period1, u_long period2)
@@ -3018,7 +3013,6 @@ ACE::minimum_frame_size (u_long period1, u_long period2)
}
}
-
u_long
ACE::is_prime (const u_long n,
const u_long min_factor,