summaryrefslogtreecommitdiff
path: root/ace/OS_NS_math.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_math.inl')
-rw-r--r--ace/OS_NS_math.inl20
1 files changed, 0 insertions, 20 deletions
diff --git a/ace/OS_NS_math.inl b/ace/OS_NS_math.inl
deleted file mode 100644
index 51db6c44966..00000000000
--- a/ace/OS_NS_math.inl
+++ /dev/null
@@ -1,20 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-ACE_INLINE double
-ACE_OS::floor (double x)
-{
- // This method computes the largest integral value not greater than x.
- return double (static_cast<long> (x));
-}
-
-ACE_INLINE double
-ACE_OS::ceil (double x)
-{
- // This method computes the smallest integral value not less than x.
- const double floor = ACE_OS::floor (x);
- if (floor == x)
- return floor;
- else
- return floor + 1;
-}