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, 9 insertions, 1 deletions
diff --git a/ace/Basic_Types.inl b/ace/Basic_Types.inl
index 20d01562575..15f9a9a1ab6 100644
--- a/ace/Basic_Types.inl
+++ b/ace/Basic_Types.inl
@@ -4,6 +4,8 @@
# 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.
@@ -134,7 +136,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
@@ -419,8 +421,12 @@ 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)
{
@@ -943,4 +949,6 @@ 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 */