~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to ace/Intrusive_List.inl

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Intrusive_List.inl,v 4.1 2001/08/01 23:39:25 coryan Exp
2
 
 
3
 
template<class T> ACE_INLINE int
4
 
ACE_Intrusive_List<T>::empty (void) const
5
 
{
6
 
  return this->head_ == 0;
7
 
}
8
 
 
9
 
template<class T> ACE_INLINE T *
10
 
ACE_Intrusive_List<T>::head (void) const
11
 
{
12
 
  return this->head_;
13
 
}
14
 
 
15
 
template<class T> ACE_INLINE T *
16
 
ACE_Intrusive_List<T>::tail (void) const
17
 
{
18
 
  return this->tail_;
19
 
}