summaryrefslogtreecommitdiff
path: root/ace/Obstack_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Obstack_T.inl')
-rw-r--r--ace/Obstack_T.inl37
1 files changed, 0 insertions, 37 deletions
diff --git a/ace/Obstack_T.inl b/ace/Obstack_T.inl
deleted file mode 100644
index 92c90cd44d9..00000000000
--- a/ace/Obstack_T.inl
+++ /dev/null
@@ -1,37 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template <class CHAR> ACE_INLINE size_t
-ACE_Obstack_T<CHAR>::length () const
-{
- return this->size_ / sizeof (CHAR);
-}
-
-template <class CHAR> ACE_INLINE size_t
-ACE_Obstack_T<CHAR>::size () const
-{
- return this->size_;
-}
-
-template <class CHAR> ACE_INLINE void
-ACE_Obstack_T<CHAR>::grow_fast (CHAR c)
-{
- * (reinterpret_cast<CHAR *> (this->curr_->cur_)) = c;
- this->curr_->cur_ += sizeof (CHAR);
-}
-
-template <class CHAR> ACE_INLINE CHAR *
-ACE_Obstack_T<CHAR>::freeze (void)
-{
- CHAR *retv = reinterpret_cast<CHAR *> (this->curr_->block_);
- * (reinterpret_cast<CHAR *> (this->curr_->cur_)) = 0;
-
- this->curr_->cur_ += sizeof (CHAR);
- this->curr_->block_ = this->curr_->cur_;
- return retv;
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL