summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorAdam Mitz <mitza@objectcomputing.com>2021-11-05 10:57:31 -0500
committerAdam Mitz <mitza@objectcomputing.com>2021-11-05 10:57:31 -0500
commit16330a8f2ece9ed2a36fe5af9c7d69efb195d44c (patch)
tree55d956fb1d7f57ba1e3c0ec5235649a637027f33 /ACE
parent2bc264c4ebe25a8aebb0d33a19b308132864fb58 (diff)
downloadATCD-16330a8f2ece9ed2a36fe5af9c7d69efb195d44c.tar.gz
updated ACE_TRACE logging
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ace/Based_Pointer_T.inl20
1 files changed, 10 insertions, 10 deletions
diff --git a/ACE/ace/Based_Pointer_T.inl b/ACE/ace/Based_Pointer_T.inl
index a4104dd3165..2b2ff60ee34 100644
--- a/ACE/ace/Based_Pointer_T.inl
+++ b/ACE/ace/Based_Pointer_T.inl
@@ -14,7 +14,7 @@ ACE_Based_Pointer<CONCRETE>::operator-> ()
template <class CONCRETE> ACE_INLINE void
ACE_Based_Pointer_Basic<CONCRETE>::operator= (CONCRETE *rhs)
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator =");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator=");
if (rhs == 0)
// Store a value of <target_> that indicate "NULL" pointer.
this->target_ = -1;
@@ -26,7 +26,7 @@ ACE_Based_Pointer_Basic<CONCRETE>::operator= (CONCRETE *rhs)
template <class CONCRETE> ACE_INLINE void
ACE_Based_Pointer<CONCRETE>::operator= (CONCRETE *rhs)
{
- ACE_TRACE ("ACE_Based_Pointer<CONCRETE>::operator =");
+ ACE_TRACE ("ACE_Based_Pointer<CONCRETE>::operator=");
if (rhs == 0)
// Store a value of <target_> that indicate "NULL" pointer.
this->target_ = -1;
@@ -64,7 +64,7 @@ ACE_Based_Pointer_Basic<CONCRETE>::operator CONCRETE * () const
template <class CONCRETE> ACE_INLINE CONCRETE
ACE_Based_Pointer_Basic<CONCRETE>::operator[] (int index) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator []");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator[]");
CONCRETE *c =
reinterpret_cast<CONCRETE *> (ACE_COMPUTE_BASED_POINTER (this));
return c[index];
@@ -73,49 +73,49 @@ ACE_Based_Pointer_Basic<CONCRETE>::operator[] (int index) const
template <class CONCRETE> ACE_INLINE void
ACE_Based_Pointer_Basic<CONCRETE>::operator+= (int index)
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator +=");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator+=");
this->base_offset_ += (index * sizeof (CONCRETE));
}
template <class CONCRETE> ACE_INLINE bool
ACE_Based_Pointer_Basic<CONCRETE>::operator== (const ACE_Based_Pointer_Basic &rhs) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator ==");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator==");
return ACE_COMPUTE_BASED_POINTER (this) == ACE_COMPUTE_BASED_POINTER (&rhs);
}
template <class CONCRETE> ACE_INLINE bool
ACE_Based_Pointer_Basic<CONCRETE>::operator!= (const ACE_Based_Pointer_Basic &rhs) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator !=");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator!=");
return !(*this == rhs);
}
template <class CONCRETE> ACE_INLINE bool
ACE_Based_Pointer_Basic<CONCRETE>::operator< (const ACE_Based_Pointer_Basic &rhs) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator <");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator<");
return ACE_COMPUTE_BASED_POINTER (this) < ACE_COMPUTE_BASED_POINTER (&rhs);
}
template <class CONCRETE> ACE_INLINE bool
ACE_Based_Pointer_Basic<CONCRETE>::operator<= (const ACE_Based_Pointer_Basic &rhs) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator <=");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator<=");
return ACE_COMPUTE_BASED_POINTER (this) <= ACE_COMPUTE_BASED_POINTER (&rhs);
}
template <class CONCRETE> ACE_INLINE bool
ACE_Based_Pointer_Basic<CONCRETE>::operator> (const ACE_Based_Pointer_Basic &rhs) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator >");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator>");
return ACE_COMPUTE_BASED_POINTER (this) > ACE_COMPUTE_BASED_POINTER (&rhs);
}
template <class CONCRETE> ACE_INLINE bool
ACE_Based_Pointer_Basic<CONCRETE>::operator>= (const ACE_Based_Pointer_Basic &rhs) const
{
- ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator >=");
+ ACE_TRACE ("ACE_Based_Pointer_Basic<CONCRETE>::operator>=");
return ACE_COMPUTE_BASED_POINTER (this) >= ACE_COMPUTE_BASED_POINTER (&rhs);
}