summaryrefslogtreecommitdiff
path: root/ace/Basic_Types.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Basic_Types.inl')
-rw-r--r--ace/Basic_Types.inl10
1 files changed, 1 insertions, 9 deletions
diff --git a/ace/Basic_Types.inl b/ace/Basic_Types.inl
index 15f9a9a1ab6..20d01562575 100644
--- a/ace/Basic_Types.inl
+++ b/ace/Basic_Types.inl
@@ -4,8 +4,6 @@
# if !defined (ACE_LACKS_LONGLONG_T) && defined (ACE_LACKS_UNSIGNEDLONGLONG_T)
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
// Implementation for ACE_U_LongLong when we have signed long long
// but no unsigned long long.
@@ -136,7 +134,7 @@ ACE_U_LongLong::operator>= (const ACE_U_LongLong &n) const
{
if (data_ == n.data_) return true;
- return data_ > n.data_;
+ return data_ > n.data_;
}
ACE_INLINE bool
@@ -421,12 +419,8 @@ ACE_U_LongLong::operator/ (const int n) const
}
#endif
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#elif defined (ACE_LACKS_LONGLONG_T)
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
ACE_INLINE
ACE_U_LongLong::ACE_U_LongLong (const ACE_UINT32 lo, const ACE_UINT32 hi)
{
@@ -949,6 +943,4 @@ ACE_U_LongLong::operator/ (const int n) const
}
#endif /* ACE_SIZEOF_INT != 4 */
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#endif /* ACE_LACKS_LONGLONG_T || ACE_LACKS_UNSIGNEDLONGLONG_T */